Sample code for 30+ languages & platforms
Visual Basic 6.0

Frame.io - Create a Folder

See more Frame.io Examples

Create a folder asset as a child to the root_asset_id.

Chilkat Visual Basic 6.0 Downloads

Visual Basic 6.0
Dim success As Long
success = 0

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

Dim http As New ChilkatHttp

' 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 ChilkatJsonObject
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 ChilkatHttpResponse
success = http.HttpJson("POST","https://api.frame.io/v2/assets/4ecb383f-71a8-4233-b665-d8f75136f554/children",json,"application/json",resp)
If (success = 0) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

Dim sbResponseBody As New ChilkatStringBuilder
success = resp.GetBodySb(sbResponseBody)
Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0

Debug.Print "Response Body:"
Debug.Print jResp.Emit()

Dim respStatusCode As Long
respStatusCode = resp.StatusCode
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
    Debug.Print "Response Header:"
    Debug.Print resp.Header
    Debug.Print "Failed."
    Exit Sub
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 Long
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 Long
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 Long
is_session_watermarked = jResp.BoolOf("is_session_watermarked")
Dim parent_id As String
parent_id = jResp.StringOf("parent_id")
Dim versions As Long
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 Long
v_private = jResp.BoolOf("private")
Dim frames As Long
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 Long
user_permissionsCan_download = jResp.BoolOf("user_permissions.can_download")
Dim user_permissionsCan_modify_template As Long
user_permissionsCan_modify_template = jResp.BoolOf("user_permissions.can_modify_template")
Dim user_permissionsCan_public_share_presentation As Long
user_permissionsCan_public_share_presentation = jResp.BoolOf("user_permissions.can_public_share_presentation")
Dim user_permissionsCan_public_share_review_link As Long
user_permissionsCan_public_share_review_link = jResp.BoolOf("user_permissions.can_public_share_review_link")
Dim user_permissionsCan_share_downloadable_presentation As Long
user_permissionsCan_share_downloadable_presentation = jResp.BoolOf("user_permissions.can_share_downloadable_presentation")
Dim user_permissionsCan_share_downloadable_review_link As Long
user_permissionsCan_share_downloadable_review_link = jResp.BoolOf("user_permissions.can_share_downloadable_review_link")
Dim user_permissionsCan_share_unwatermarked_presentation As Long
user_permissionsCan_share_unwatermarked_presentation = jResp.BoolOf("user_permissions.can_share_unwatermarked_presentation")
Dim user_permissionsCan_share_unwatermarked_review_link As Long
user_permissionsCan_share_unwatermarked_review_link = jResp.BoolOf("user_permissions.can_share_unwatermarked_review_link")
Dim shared As Long
shared = jResp.BoolOf("shared")
Dim is_360 As Long
is_360 = jResp.BoolOf("is_360")
v_type = jResp.StringOf("_type")
Dim comment_count As Long
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 Long
copy = jResp.BoolOf("copy")
Dim is_hls_required As Long
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 Long
filesize = jResp.IntOf("filesize")