Sample code for 30+ languages & platforms
JavaScript

Frame.io - Get Account ID

See more Frame.io Examples

Make a GET /me request if you don't have your Account ID on hand:
Note
This example is intended for running within a Chilkat.Js embedded JavaScript engine. All Chilkat JavaScript examples require Chilkat v11.4.0 or greater.
JavaScript
var success = false;

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

var http = new CkHttp();

// Implements the following CURL command:

// curl \
//     -H "Authorization: Bearer <FRAME_IO_DEV_TOKEN>" \
//     https://api.frame.io/v2/me

// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code

// Adds the "Authorization: Bearer <FRAME_IO_DEV_TOKEN>" header.
http.AuthToken = "<FRAME_IO_DEV_TOKEN>";

var sbResponseBody = new CkStringBuilder();
success = http.QuickGetSb("https://api.frame.io/v2/me",sbResponseBody);
if (success == false) {
    console.log(http.LastErrorText);
    return;
}

var jResp = new CkJsonObject();
jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = false;

console.log("Response Body:");
console.log(jResp.Emit());

var respStatusCode = http.LastStatus;
console.log("Response Status Code = " + respStatusCode);
if (respStatusCode >= 400) {
    console.log("Response Header:");
    console.log(http.LastHeader);
    console.log("Failed.");
    return;
}

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "_type": "user",
//   "account_id": "b1cd046b-a3bf-4ef8-81a6-0afd74ecc455",
//   "bio": null,
//   "context": null,
//   "deleted_at": null,
//   "digest_frequency": "*/5 * * * *",
//   "email": "admin@chilkatsoft.com",
//   "email_confirm_by": null,
//   "email_preferences": null,
//   "features_seen": null,
//   "first_login_at": "2020-08-18T02:20:56.732000Z",
//   "from_google": false,
//   "id": "34b4f98a-7cc9-4159-8f46-c7c3d837fc6f",
//   "image_128": null,
//   "image_256": null,
//   "image_32": null,
//   "image_64": null,
//   "inserted_at": "2020-08-18T02:20:13.145929Z",
//   "joined_via": "organic",
//   "last_seen": "2020-08-18T02:20:52.852871Z",
//   "location": null,
//   "name": "Chilkat Software",
//   "next_digest_date": "2020-08-18T02:20:13.145828Z",
//   "phone": null,
//   "profile_image": "https://static-assets.frame.io/app/anon.jpg",
//   "profile_image_original": null,
//   "roles": null,
//   "timezone_value": "America/New_York",
//   "updated_at": "2020-08-18T02:20:56.950455Z",
//   "upload_url": "https://frameio-uploads-production.s3-accelerate.amazonaws.com/users/34b4f...cdcfe42b2e2f",
//   "user_default_color": "#ff40ff",
//   "user_hash": "1D39653455C86A85CA3D479C6D2ACE831211BC1B65770DF3747116DD320C3A00"
// }

// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON

var v_type = jResp.StringOf("_type");
var account_id = jResp.StringOf("account_id");
var bio = jResp.StringOf("bio");
var context = jResp.StringOf("context");
var deleted_at = jResp.StringOf("deleted_at");
var digest_frequency = jResp.StringOf("digest_frequency");
var email = jResp.StringOf("email");
var email_confirm_by = jResp.StringOf("email_confirm_by");
var email_preferences = jResp.StringOf("email_preferences");
var features_seen = jResp.StringOf("features_seen");
var first_login_at = jResp.StringOf("first_login_at");
var from_google = jResp.BoolOf("from_google");
var id = jResp.StringOf("id");
var image_128 = jResp.StringOf("image_128");
var image_256 = jResp.StringOf("image_256");
var image_32 = jResp.StringOf("image_32");
var image_64 = jResp.StringOf("image_64");
var inserted_at = jResp.StringOf("inserted_at");
var joined_via = jResp.StringOf("joined_via");
var last_seen = jResp.StringOf("last_seen");
var location = jResp.StringOf("location");
var name = jResp.StringOf("name");
var next_digest_date = jResp.StringOf("next_digest_date");
var phone = jResp.StringOf("phone");
var profile_image = jResp.StringOf("profile_image");
var profile_image_original = jResp.StringOf("profile_image_original");
var roles = jResp.StringOf("roles");
var timezone_value = jResp.StringOf("timezone_value");
var updated_at = jResp.StringOf("updated_at");
var upload_url = jResp.StringOf("upload_url");
var user_default_color = jResp.StringOf("user_default_color");
var user_hash = jResp.StringOf("user_hash");