Box Developer Documentation
 
    Latest version

    List Box Skill cards on file

    get
    https://api.box.com/2.0
    /files/:file_id/metadata/global/boxSkillsCards

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

    List the Box Skills metadata cards that are attached to a file.

    Request

    bearer [ACCESS_TOKEN]
    application/json

    Path Parameters

    stringin pathrequired
    12345

    The unique identifier that represents a file.

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

    Response

    Returns all the metadata associated with a file.

    This API does not support pagination and will therefore always return all of the metadata associated to the file.

    application/jsonClient error

    An unexpected client error.

    get
    List Box Skill cards on file
    You can now try out some of our APIs live, right here in the documentation.
    Log in

    Request Example

    cURL
    curl -i -X PUT "https://api.box.com/2.0/files/12345/metadata/global/boxSkillsCards" \
         -H "authorization: Bearer <ACCESS_TOKEN>"

    Response Example

    {
      "$canEdit": true,
      "$id": "01234500-12f1-1234-aa12-b1d234cb567e",
      "$parent": "folder_59449484661,",
      "$scope": "enterprise_27335",
      "$template": "properties",
      "$type": "properties-6bcba49f-ca6d-4d2a-a758-57fe6edf44d0",
      "$typeVersion": 2,
      "$version": 1,
      "cards": [
        {
          "created_at": "2018-04-13T13:53:23-07:00",
          "entries": [
            {
              "text": "keyword1"
            }
          ],
          "invocation": {
            "id": "image-recognition-service-123",
            "type": "skill_invocation"
          },
          "skill": {
            "id": "image-recognition-service",
            "type": "service"
          },
          "skill_card_title": {
            "code": "labels",
            "message": "Labels"
          },
          "skill_card_type": "keyword",
          "type": "skill_card"
        }
      ]
    }