Box Developer Documentation
 
    Latest version

    Create metadata instance on folder

    post
    https://api.box.com/2.0
    /folders/:folder_id/metadata/:scope/:template_key

    This endpoint is in the version 2024.0. No changes are required to continue using it. For more details, see Box API versioning.

    Applies an instance of a metadata template to a folder.

    In most cases only values that are present in the metadata template will be accepted, except for the global.properties template which accepts any key-value pair.

    To display the metadata template in the Box web app the enterprise needs to be configured to enable Cascading Folder Level Metadata for the user in the admin console.

    Request

    bearer [ACCESS_TOKEN]
    application/json

    Path Parameters

    stringin pathrequired
    12345

    The unique identifier that represent a folder.

    The ID for any folder can be determined by visiting this folder in the web application and copying the ID from the URL. For example, for the URL https://*.app.box.com/folder/123 the folder_id is 123.

    The root folder of a Box account is always represented by the ID 0.

    stringin pathrequired
    global

    The scope of the metadata template

    Value is one of global,enterprise

    stringin pathrequired
    properties

    The name of the metadata template

    Request Body

    objectin body
    "Aaron Levie"

    A value for each of the fields that are present on the metadata template. For the global.properties template this can be a list of zero or more fields, as this template allows for any generic key-value pairs to be stored in the template.

    Response

    Returns the instance of the template that was applied to the folder, including the data that was applied to the template.

    application/jsonClient error

    Returns an error when the request body is not valid.

    • schema_validation_failed - The request body contains a value for a field that either does not exist, or for which the value or type does not match the expected field type. An example might be an unknown option for an enum or multiSelect field.
    application/jsonClient error

    Returns an error when the folder or metadata template was not found.

    • not_found - The folder could not be found, or the user does not have access to the folder.
    • instance_tuple_not_found - The metadata template was not found.
    application/jsonClient error

    Returns an error when an instance of this metadata template is already present on the folder.

    • tuple_already_exists - An instance of them metadata template already exists on the file.
    application/jsonClient error

    An unexpected client error.

    post
    Create metadata instance on folder
    You can now try out some of our APIs live, right here in the documentation.
    Log in

    Request Example

    cURL
    curl -i -X POST "https://api.box.com/2.0/folders/4353455/metadata/enterprise_27335/blueprintTemplate" \
         -H "authorization: Bearer <ACCESS_TOKEN>" \
         -H "content-type: application/json" \
         -d '{
           "audience": "internal",
           "documentType": "Q1 plans",
           "competitiveDocument": "no",
           "status": "active",
           "author": "Jones",
           "currentState": "proposal"
         }'

    Response Example

    {
      "$canEdit": true,
      "$id": "01234500-12f1-1234-aa12-b1d234cb567e",
      "$parent": "folder_59449484661,",
      "$scope": "enterprise_27335",
      "$template": "marketingCollateral",
      "$type": "properties-6bcba49f-ca6d-4d2a-a758-57fe6edf44d0",
      "$typeVersion": 2,
      "$version": 1
    }