Xojo Plugin
Xojo Plugin
Frame.io - Create a Folder
See more Frame.io Examples
Create a folder asset as a child to the root_asset_id.Chilkat Xojo Plugin Downloads
Dim success As Boolean
success = False
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Dim http As New Chilkat.Http
// Implements the following CURL command:
// curl --request POST \
// --url https://api.frame.io/v2/assets/<root_asset_id>/children \
// --header 'authorization: Bearer <FRAME_IO_DEV_TOKEN>' \
// --header 'content-type: application/json' \
// --data '{"type":"folder", "name": "Folder at root"}'
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "type": "folder",
// "name": "Folder at root"
// }
Dim json As New Chilkat.JsonObject
success = json.UpdateString("type","folder")
success = json.UpdateString("name","Folder at root")
http.SetRequestHeader "content-type","application/json"
// Adds the "Authorization: Bearer <FRAME_IO_DEV_TOKEN>" header.
http.AuthToken = "<FRAME_IO_DEV_TOKEN>"
// Our root_asset_id = 4ecb383f-71a8-4233-b665-d8f75136f554
// You'll need to modify the following line to use your root asset ID.
Dim resp As New Chilkat.HttpResponse
success = http.HttpJson("POST","https://api.frame.io/v2/assets/4ecb383f-71a8-4233-b665-d8f75136f554/children",json,"application/json",resp)
If (success = False) Then
System.DebugLog(http.LastErrorText)
Return
End If
Dim sbResponseBody As New Chilkat.StringBuilder
success = resp.GetBodySb(sbResponseBody)
Dim jResp As New Chilkat.JsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = False
System.DebugLog("Response Body:")
System.DebugLog(jResp.Emit())
Dim respStatusCode As Int32
respStatusCode = resp.StatusCode
System.DebugLog("Response Status Code = " + Str(respStatusCode))
If (respStatusCode >= 400) Then
System.DebugLog("Response Header:")
System.DebugLog(resp.Header)
System.DebugLog("Failed.")
Return
End If
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "team_id": "95a5fbad-688d-46fc-aef1-2f011dd76c10",
// "public_item_count": 0,
// "properties": null,
// "deleted_at": null,
// "fps": null,
// "rating": null,
// "description": null,
// "updated_at": "2020-08-18T03:31:59.699011Z",
// "cover_asset_id": null,
// "archive_scheduled_at": null,
// "subtitle_tracks": null,
// "index": -7.0,
// "item_count": 0,
// "account_id": "b1cd046b-a3bf-4ef8-81a6-0afd74ecc455",
// "name": "FolderA",
// "checksums": null,
// "audio_tracks": null,
// "duration": null,
// "label": "none",
// "is_session_watermarked": false,
// "parent_id": "4ecb383f-71a8-4233-b665-d8f75136f554",
// "versions": 0,
// "project_id": "e76653c4-6cc0-4c47-936b-f7885b477dc0",
// "resource_id": null,
// "private": false,
// "frames": 0,
// "autoversion_id": null,
// "type": "folder",
// "uploaded_at": "2020-08-18T03:31:59.697174Z",
// "creator_id": "34b4f98a-7cc9-4159-8f46-c7c3d837fc6f",
// "user_permissions": {
// "can_download": true,
// "can_modify_template": false,
// "can_public_share_presentation": true,
// "can_public_share_review_link": true,
// "can_share_downloadable_presentation": true,
// "can_share_downloadable_review_link": true,
// "can_share_unwatermarked_presentation": true,
// "can_share_unwatermarked_review_link": true
// },
// "shared": false,
// "is_360": false,
// "_type": "folder",
// "comment_count": 0,
// "archived_at": null,
// "filetype": null,
// "id": "039845e8-bffe-4d6b-88d3-c780bae06342",
// "hard_deleted_at": null,
// "copy": false,
// "is_hls_required": false,
// "archive_status": null,
// "inserted_at": "2020-08-18T03:31:59.699011Z",
// "filesize": 0
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
Dim team_id As String
team_id = jResp.StringOf("team_id")
Dim public_item_count As Int32
public_item_count = jResp.IntOf("public_item_count")
Dim properties As String
properties = jResp.StringOf("properties")
Dim deleted_at As String
deleted_at = jResp.StringOf("deleted_at")
Dim fps As String
fps = jResp.StringOf("fps")
Dim rating As String
rating = jResp.StringOf("rating")
Dim description As String
description = jResp.StringOf("description")
Dim updated_at As String
updated_at = jResp.StringOf("updated_at")
Dim cover_asset_id As String
cover_asset_id = jResp.StringOf("cover_asset_id")
Dim archive_scheduled_at As String
archive_scheduled_at = jResp.StringOf("archive_scheduled_at")
Dim subtitle_tracks As String
subtitle_tracks = jResp.StringOf("subtitle_tracks")
Dim index As String
index = jResp.StringOf("index")
Dim item_count As Int32
item_count = jResp.IntOf("item_count")
Dim account_id As String
account_id = jResp.StringOf("account_id")
Dim name As String
name = jResp.StringOf("name")
Dim checksums As String
checksums = jResp.StringOf("checksums")
Dim audio_tracks As String
audio_tracks = jResp.StringOf("audio_tracks")
Dim duration As String
duration = jResp.StringOf("duration")
Dim label As String
label = jResp.StringOf("label")
Dim is_session_watermarked As Boolean
is_session_watermarked = jResp.BoolOf("is_session_watermarked")
Dim parent_id As String
parent_id = jResp.StringOf("parent_id")
Dim versions As Int32
versions = jResp.IntOf("versions")
Dim project_id As String
project_id = jResp.StringOf("project_id")
Dim resource_id As String
resource_id = jResp.StringOf("resource_id")
Dim v_private As Boolean
v_private = jResp.BoolOf("private")
Dim frames As Int32
frames = jResp.IntOf("frames")
Dim autoversion_id As String
autoversion_id = jResp.StringOf("autoversion_id")
Dim v_type As String
v_type = jResp.StringOf("type")
Dim uploaded_at As String
uploaded_at = jResp.StringOf("uploaded_at")
Dim creator_id As String
creator_id = jResp.StringOf("creator_id")
Dim user_permissionsCan_download As Boolean
user_permissionsCan_download = jResp.BoolOf("user_permissions.can_download")
Dim user_permissionsCan_modify_template As Boolean
user_permissionsCan_modify_template = jResp.BoolOf("user_permissions.can_modify_template")
Dim user_permissionsCan_public_share_presentation As Boolean
user_permissionsCan_public_share_presentation = jResp.BoolOf("user_permissions.can_public_share_presentation")
Dim user_permissionsCan_public_share_review_link As Boolean
user_permissionsCan_public_share_review_link = jResp.BoolOf("user_permissions.can_public_share_review_link")
Dim user_permissionsCan_share_downloadable_presentation As Boolean
user_permissionsCan_share_downloadable_presentation = jResp.BoolOf("user_permissions.can_share_downloadable_presentation")
Dim user_permissionsCan_share_downloadable_review_link As Boolean
user_permissionsCan_share_downloadable_review_link = jResp.BoolOf("user_permissions.can_share_downloadable_review_link")
Dim user_permissionsCan_share_unwatermarked_presentation As Boolean
user_permissionsCan_share_unwatermarked_presentation = jResp.BoolOf("user_permissions.can_share_unwatermarked_presentation")
Dim user_permissionsCan_share_unwatermarked_review_link As Boolean
user_permissionsCan_share_unwatermarked_review_link = jResp.BoolOf("user_permissions.can_share_unwatermarked_review_link")
Dim shared As Boolean
shared = jResp.BoolOf("shared")
Dim is_360 As Boolean
is_360 = jResp.BoolOf("is_360")
v_type = jResp.StringOf("_type")
Dim comment_count As Int32
comment_count = jResp.IntOf("comment_count")
Dim archived_at As String
archived_at = jResp.StringOf("archived_at")
Dim filetype As String
filetype = jResp.StringOf("filetype")
Dim id As String
id = jResp.StringOf("id")
Dim hard_deleted_at As String
hard_deleted_at = jResp.StringOf("hard_deleted_at")
Dim copy As Boolean
copy = jResp.BoolOf("copy")
Dim is_hls_required As Boolean
is_hls_required = jResp.BoolOf("is_hls_required")
Dim archive_status As String
archive_status = jResp.StringOf("archive_status")
Dim inserted_at As String
inserted_at = jResp.StringOf("inserted_at")
Dim filesize As Int32
filesize = jResp.IntOf("filesize")