{
  "info": {
    "name": "Box — mcp.ai",
    "description": "REST API for the Box MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/box",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "box_add_classification_to_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/classification/to/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "classification",
            "to",
            "file"
          ]
        },
        "description": "Adds a classification to a file by specifying the label of the classification to add. this api can also be called by including the enterprise id in the url explicitly, for example `/files/:id//enterpr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"Box__Security__Classification__Key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_add_classification_to_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/classification/to/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "classification",
            "to",
            "folder"
          ]
        },
        "description": "Adds a classification to a folder by specifying the label of the classification to add. this api can also be called by including the enterprise id in the url explicitly, for example `/folders/:id/ente",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\",\n  \"Box__Security__Classification__Key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_add_domain_to_list_of_allowed_collaboration_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/domain/to/list/of/allowed/collaboration/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "domain",
            "to",
            "list",
            "of",
            "allowed",
            "collaboration",
            "domains"
          ]
        },
        "description": "Creates a new entry in the list of allowed domains to allow collaboration for.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\",\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_add_initial_classifications",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/initial/classifications",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "initial",
            "classifications"
          ]
        },
        "description": "When an enterprise does not yet have any classifications, this api call initializes the classification template with an initial set of classifications. if an enterprise already has a classification, t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"fields\": \"\",\n  \"hidden\": false,\n  \"displayName\": \"\",\n  \"templateKey\": \"\",\n  \"copyInstanceOnItemCopy\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_add_or_update_user_avatar",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/or/update/user/avatar",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "or",
            "update",
            "user",
            "avatar"
          ]
        },
        "description": "Adds or updates a user avatar.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pic\": {},\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_add_shared_link_to_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/shared/link/to/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "shared",
            "link",
            "to",
            "file"
          ]
        },
        "description": "Adds a shared link to a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"file_id\": \"\",\n  \"shared__link__access\": \"\",\n  \"shared__link__password\": \"\",\n  \"shared__link__unshared__at\": \"\",\n  \"shared__link__vanity__name\": \"\",\n  \"shared__link__permissions__can__edit\": false,\n  \"shared__link__permissions__can__preview\": false,\n  \"shared__link__permissions__can__download\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_add_shared_link_to_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/shared/link/to/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "shared",
            "link",
            "to",
            "folder"
          ]
        },
        "description": "Adds a shared link to a folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"folder_id\": \"\",\n  \"shared__link__access\": \"\",\n  \"shared__link__password\": \"\",\n  \"shared__link__unshared__at\": \"\",\n  \"shared__link__vanity__name\": \"\",\n  \"shared__link__permissions__can__edit\": false,\n  \"shared__link__permissions__can__preview\": false,\n  \"shared__link__permissions__can__download\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_add_shared_link_to_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/shared/link/to/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "shared",
            "link",
            "to",
            "web",
            "link"
          ]
        },
        "description": "Adds a shared link to a web link.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"web_link_id\": \"\",\n  \"shared__link__access\": \"\",\n  \"shared__link__password\": \"\",\n  \"shared__link__unshared__at\": \"\",\n  \"shared__link__vanity__name\": \"\",\n  \"shared__link__permissions__can__edit\": false,\n  \"shared__link__permissions__can__preview\": false,\n  \"shared__link__permissions__can__download\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_add_user_to_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/user/to/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "user",
            "to",
            "group"
          ]
        },
        "description": "Creates a group membership. only users with admin-level permissions will be able to use this api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"fields\": \"\",\n  \"user__id\": \"\",\n  \"group__id\": \"\",\n  \"configurable_permissions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_apply_watermark_to_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/apply/watermark/to/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "apply",
            "watermark",
            "to",
            "file"
          ]
        },
        "description": "Applies or update a watermark on a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"watermark__imprint\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_apply_watermark_to_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/apply/watermark/to/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "apply",
            "watermark",
            "to",
            "folder"
          ]
        },
        "description": "Applies or update a watermark on a folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\",\n  \"watermark__imprint\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_ask_question",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ask/question",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ask",
            "question"
          ]
        },
        "description": "Sends an ai request to supported llms and returns an answer specifically focused on the user's question given the provided context.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"items\": \"\",\n  \"prompt\": \"\",\n  \"dialogue_history\": \"\",\n  \"include_citations\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_assign_legal_hold_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/assign/legal/hold/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "assign",
            "legal",
            "hold",
            "policy"
          ]
        },
        "description": "Assign a legal hold to a file, file version, folder, or user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"policy_id\": \"\",\n  \"assign__to__id\": \"\",\n  \"assign__to__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_assign_retention_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/assign/retention/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "assign",
            "retention",
            "policy"
          ]
        },
        "description": "Assigns a retention policy to an item.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"policy_id\": \"\",\n  \"filter_fields\": \"\",\n  \"assign__to__id\": \"\",\n  \"assign__to__type\": \"\",\n  \"start_date_field\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_assign_storage_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/assign/storage/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "assign",
            "storage",
            "policy"
          ]
        },
        "description": "Creates a storage policy assignment for an enterprise or user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"assigned__to__id\": \"\",\n  \"assigned__to__type\": \"\",\n  \"storage__policy__id\": \"\",\n  \"storage__policy__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_assign_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/assign/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "assign",
            "task"
          ]
        },
        "description": "Assigns a task to a user. a task can be assigned to more than one user by creating multiple assignments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task__id\": \"\",\n  \"task__type\": \"\",\n  \"assign__to__id\": \"\",\n  \"assign__to__login\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_authorize_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/authorize/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "authorize",
            "user"
          ]
        },
        "description": "Authorize a user by sending them through the [box](https://box.com) website and request their permission to act on their behalf. this is the first step when authenticating a user using oauth 2.0. to r",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"state\": \"\",\n  \"client_id\": \"\",\n  \"redirect_uri\": \"\",\n  \"response_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_cancel_box_sign_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/box/sign/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "box",
            "sign",
            "request"
          ]
        },
        "description": "Cancels a sign request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sign_request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_change_shield_information_barrier_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/change/shield/information/barrier/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "change",
            "shield",
            "information",
            "barrier",
            "status"
          ]
        },
        "description": "Change status of shield information barrier with the specified id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_commit_upload_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/commit/upload/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "commit",
            "upload",
            "session"
          ]
        },
        "description": "Close an upload session and create a file from the uploaded chunks. the actual endpoint url is returned by the [`create upload session`](e://post-files-upload-sessions) and [`get upload session`](e://",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"parts\": \"\",\n  \"upload_session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_copy_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/copy/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "copy",
            "file"
          ]
        },
        "description": "Creates a copy of a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"fields\": \"\",\n  \"file_id\": \"\",\n  \"version\": \"\",\n  \"parent__id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_copy_file_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/copy/file/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "copy",
            "file",
            "request"
          ]
        },
        "description": "Copies an existing file request that is already present on one folder, and applies it to another folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_copy_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/copy/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "copy",
            "folder"
          ]
        },
        "description": "Creates a copy of a folder within a destination folder. the original folder will not be changed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"fields\": \"\",\n  \"folder_id\": \"\",\n  \"parent__id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_ai_agent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/ai/agent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "ai",
            "agent"
          ]
        },
        "description": "Creates an ai agent. at least one of the following capabilities must be provided: `ask`, `text gen`, `extract`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"ask__type\": \"\",\n  \"access_state\": \"\",\n  \"extract__type\": \"\",\n  \"icon_reference\": \"\",\n  \"text__gen__type\": \"\",\n  \"allowed_entities\": \"\",\n  \"ask__description\": \"\",\n  \"ask__access__state\": \"\",\n  \"extract__description\": \"\",\n  \"extract__access__state\": \"\",\n  \"text__gen__description\": \"\",\n  \"text__gen__access__state\": \"\",\n  \"ask__custom__instructions\": \"\",\n  \"extract__custom__instructions\": \"\",\n  \"text__gen__custom__instructions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_box_sign_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/box/sign/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "box",
            "sign",
            "request"
          ]
        },
        "description": "Creates a signature request. this involves preparing a document for signing and sending the signature request to signers.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_box_skill_cards_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/box/skill/cards/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "box",
            "skill",
            "cards",
            "on",
            "file"
          ]
        },
        "description": "Applies one or more box skills metadata cards to a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cards\": \"\",\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_collaboration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/collaboration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "collaboration"
          ]
        },
        "description": "Adds a collaboration for a single user or a single group to a file or folder. collaborations can be created using email address, user ids, or a group ids. if a collaboration is being created with a gr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"fields\": \"\",\n  \"notify\": false,\n  \"item__id\": \"\",\n  \"expires_at\": \"\",\n  \"item__type\": \"\",\n  \"can_view_path\": false,\n  \"is_access_only\": false,\n  \"accessible__by__id\": \"\",\n  \"accessible__by__type\": \"\",\n  \"accessible__by__login\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "comment"
          ]
        },
        "description": "Adds a comment by the user to a specific file, or as a reply to an other comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"message\": \"\",\n  \"item__id\": \"\",\n  \"item__type\": \"\",\n  \"tagged_message\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_email_alias",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/email/alias",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "email",
            "alias"
          ]
        },
        "description": "Adds a new email alias to a user account..",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "folder"
          ]
        },
        "description": "Creates a new empty folder within the specified parent folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"fields\": \"\",\n  \"parent__id\": \"\",\n  \"sync_state\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_folder_lock",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/folder/lock",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "folder",
            "lock"
          ]
        },
        "description": "Creates a folder lock on a folder, preventing it from being moved and/or deleted. you must be authenticated as the owner or co-owner of the folder to use this endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder__id\": \"\",\n  \"folder__type\": \"\",\n  \"locked__operations__move\": false,\n  \"locked__operations__delete\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "group"
          ]
        },
        "description": "Creates a new group of users in an enterprise. only users with admin permissions can create new groups.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"fields\": \"\",\n  \"provenance\": \"\",\n  \"description\": \"\",\n  \"invitability_level\": \"\",\n  \"external_sync_identifier\": \"\",\n  \"member_viewability_level\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_jobs_to_terminate_user_group_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/jobs/to/terminate/user/group/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "jobs",
            "to",
            "terminate",
            "user",
            "group",
            "session"
          ]
        },
        "description": "Validates the roles and permissions of the group, and creates asynchronous jobs to terminate the group's sessions. returns the status for the post request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_jobs_to_terminate_users_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/jobs/to/terminate/users/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "jobs",
            "to",
            "terminate",
            "users",
            "session"
          ]
        },
        "description": "Validates the roles and permissions of the user, and creates asynchronous jobs to terminate the user's sessions. returns the status for the post request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_ids\": \"\",\n  \"user_logins\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_legal_hold_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/legal/hold/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "legal",
            "hold",
            "policy"
          ]
        },
        "description": "Create a new legal hold policy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"is_ongoing\": false,\n  \"description\": \"\",\n  \"policy_name\": \"\",\n  \"filter_ended_at\": \"\",\n  \"filter_started_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_metadata_cascade_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/metadata/cascade/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "metadata",
            "cascade",
            "policy"
          ]
        },
        "description": "Creates a new metadata cascade policy that applies a given metadata template to a given folder and automatically cascades it down to any files within that folder. in order for the policy to be applied",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"folder_id\": \"\",\n  \"templateKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_metadata_instance_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/metadata/instance/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "metadata",
            "instance",
            "on",
            "file"
          ]
        },
        "description": "Applies an instance of a metadata template to a file. in most cases only values that are present in the metadata template will be accepted, except for the `global.properties` template which accepts an",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"file_id\": \"\",\n  \"template_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_metadata_instance_on_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/metadata/instance/on/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "metadata",
            "instance",
            "on",
            "folder"
          ]
        },
        "description": "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 ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"folder_id\": \"\",\n  \"template_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_metadata_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/metadata/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "metadata",
            "template"
          ]
        },
        "description": "Creates a new metadata template that can be applied to files and folders.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"fields\": \"\",\n  \"hidden\": false,\n  \"displayName\": \"\",\n  \"templateKey\": \"\",\n  \"copyInstanceOnItemCopy\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_retention_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/retention/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "retention",
            "policy"
          ]
        },
        "description": "Creates a retention policy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"description\": \"\",\n  \"policy_name\": \"\",\n  \"policy_type\": \"\",\n  \"retention_type\": \"\",\n  \"retention_length\": \"\",\n  \"disposition_action\": \"\",\n  \"are_owners_notified\": false,\n  \"can_owner_extend_retention\": false,\n  \"custom_notification_recipients\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_shield_information_barrier",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/shield/information/barrier",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "shield",
            "information",
            "barrier"
          ]
        },
        "description": "Creates a shield information barrier to separate individuals/groups within the same firm and prevents confidential information passing between them.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_shield_information_barrier_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/shield/information/barrier/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "shield",
            "information",
            "barrier",
            "report"
          ]
        },
        "description": "Creates a shield information barrier report for a given barrier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"shield__information__barrier__id\": \"\",\n  \"shield__information__barrier__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_shield_information_barrier_segment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/shield/information/barrier/segment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "shield",
            "information",
            "barrier",
            "segment"
          ]
        },
        "description": "Creates a shield information barrier segment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"description\": \"\",\n  \"shield__information__barrier__id\": \"\",\n  \"shield__information__barrier__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_shield_information_barrier_segment_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/shield/information/barrier/segment/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "shield",
            "information",
            "barrier",
            "segment",
            "member"
          ]
        },
        "description": "Creates a new shield information barrier segment member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"shield__information__barrier__id\": \"\",\n  \"shield__information__barrier__type\": \"\",\n  \"shield__information__barrier__segment__id\": \"\",\n  \"shield__information__barrier__segment__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_shield_information_barrier_segment_restriction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/shield/information/barrier/segment/restriction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "shield",
            "information",
            "barrier",
            "segment",
            "restriction"
          ]
        },
        "description": "Creates a shield information barrier segment restriction object.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"restricted__segment__id\": \"\",\n  \"restricted__segment__type\": \"\",\n  \"shield__information__barrier__id\": \"\",\n  \"shield__information__barrier__type\": \"\",\n  \"shield__information__barrier__segment__id\": \"\",\n  \"shield__information__barrier__segment__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_slack_integration_mapping",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/slack/integration/mapping",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "slack",
            "integration",
            "mapping"
          ]
        },
        "description": "Creates a [slack integration mapping](https://support.box.com/hc/en-us/articles/4415585987859-box-as-the-content-layer-for-slack) by mapping a slack channel to a box item. you need admin or co-admin r",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task"
          ]
        },
        "description": "Creates a single task on a file. this task is not assigned to any user and will need to be assigned separately.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action\": \"\",\n  \"due_at\": \"\",\n  \"message\": \"\",\n  \"item__id\": \"\",\n  \"item__type\": \"\",\n  \"completion_rule\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_teams_integration_mapping",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/teams/integration/mapping",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "teams",
            "integration",
            "mapping"
          ]
        },
        "description": "Creates a [teams integration mapping](https://support.box.com/hc/en-us/articles/360044681474-using-box-for-teams) by mapping a teams channel to a box item. you need admin or co-admin role to use this ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_terms_of_service",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/terms/of/service",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "terms",
            "of",
            "service"
          ]
        },
        "description": "Creates a terms of service for a given enterprise and type of user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"status\": \"\",\n  \"tos_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_terms_of_service_status_for_new_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/terms/of/service/status/for/new/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "terms",
            "of",
            "service",
            "status",
            "for",
            "new",
            "user"
          ]
        },
        "description": "Sets the status for a terms of service for a user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tos__id\": \"\",\n  \"user__id\": \"\",\n  \"tos__type\": \"\",\n  \"user__type\": \"\",\n  \"is_accepted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_upload_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/upload/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "upload",
            "session"
          ]
        },
        "description": "Creates an upload session for a new file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_name\": \"\",\n  \"file_size\": 0,\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_upload_session_for_existing_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/upload/session/for/existing/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "upload",
            "session",
            "for",
            "existing",
            "file"
          ]
        },
        "description": "Creates an upload session for an existing file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"file_name\": \"\",\n  \"file_size\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "user"
          ]
        },
        "description": "Creates a new managed user in an enterprise. this endpoint is only available to users and applications with the right admin permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"role\": \"\",\n  \"login\": \"\",\n  \"phone\": \"\",\n  \"fields\": \"\",\n  \"status\": \"\",\n  \"address\": \"\",\n  \"language\": \"\",\n  \"timezone\": \"\",\n  \"job_title\": \"\",\n  \"space_amount\": 0,\n  \"tracking_codes\": \"\",\n  \"is_sync_enabled\": false,\n  \"external_app_user_id\": \"\",\n  \"can_see_managed_users\": false,\n  \"is_platform_access_only\": false,\n  \"is_exempt_from_device_limits\": false,\n  \"is_external_collab_restricted\": false,\n  \"is_exempt_from_login_verification\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_user_exemption_from_collaboration_domain_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/user/exemption/from/collaboration/domain/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "user",
            "exemption",
            "from",
            "collaboration",
            "domain",
            "restrictions"
          ]
        },
        "description": "Create user exemption from collaboration domain restrictions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user__id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_user_invite",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/user/invite",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "user",
            "invite"
          ]
        },
        "description": "Invites an existing external user to join an enterprise. the existing user can not be part of another enterprise and must already have a box account. once invited, the user will receive an email and a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"enterprise__id\": \"\",\n  \"actionable__by__login\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "web",
            "link"
          ]
        },
        "description": "Creates a web link object within a folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\",\n  \"parent__id\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Creates a webhook.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"address\": \"\",\n  \"triggers\": \"\",\n  \"target__id\": \"\",\n  \"target__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_create_zip_download",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/zip/download",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "zip",
            "download"
          ]
        },
        "description": "Creates a request to download multiple files and folders as a single `zip` archive file. this api does not return the archive but instead performs all the checks to ensure that the user has access to ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"download_file_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_ai_agent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/ai/agent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "ai",
            "agent"
          ]
        },
        "description": "Deletes an ai agent using the provided parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "file"
          ]
        },
        "description": "Deletes a file, either permanently or by moving it to the trash. the the enterprise settings determine whether the item will be permanently deleted from box or moved to the trash.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_file_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/file/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "file",
            "request"
          ]
        },
        "description": "Deletes a file request permanently.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "folder"
          ]
        },
        "description": "Deletes a folder, either permanently or by moving it to the trash.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\",\n  \"recursive\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_folder_lock",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/folder/lock",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "folder",
            "lock"
          ]
        },
        "description": "Deletes a folder lock on a given folder. you must be authenticated as the owner or co-owner of the folder to use this endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_lock_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_retention_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/retention/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "retention",
            "policy"
          ]
        },
        "description": "Permanently deletes a retention policy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"retention_policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_shield_information_barrier_segment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/shield/information/barrier/segment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "shield",
            "information",
            "barrier",
            "segment"
          ]
        },
        "description": "Deletes the shield information barrier segment based on provided id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"shield_information_barrier_segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_shield_information_barrier_segment_member_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/shield/information/barrier/segment/member/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "shield",
            "information",
            "barrier",
            "segment",
            "member",
            "by",
            "id"
          ]
        },
        "description": "Deletes a shield information barrier segment member based on provided id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"shield_information_barrier_segment_member_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_shield_information_barrier_segment_restriction_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/shield/information/barrier/segment/restriction/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "shield",
            "information",
            "barrier",
            "segment",
            "restriction",
            "by",
            "id"
          ]
        },
        "description": "Delete shield information barrier segment restriction by id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"shield_information_barrier_segment_restriction_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_slack_integration_mapping",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/slack/integration/mapping",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "slack",
            "integration",
            "mapping"
          ]
        },
        "description": "Deletes a [slack integration mapping](https://support.box.com/hc/en-us/articles/4415585987859-box-as-the-content-layer-for-slack). you need admin or co-admin role to use this endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"integration_mapping_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_teams_integration_mapping",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/teams/integration/mapping",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "teams",
            "integration",
            "mapping"
          ]
        },
        "description": "Deletes a [teams integration mapping](https://support.box.com/hc/en-us/articles/360044681474-using-box-for-teams). you need admin or co-admin role to use this endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"integration_mapping_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user"
          ]
        },
        "description": "Deletes a user. by default this will fail if the user still owns any content. move their owned content first before proceeding, or use the `force` field to delete the user and their files.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"force\": false,\n  \"notify\": false,\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_delete_user_avatar",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user/avatar",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user",
            "avatar"
          ]
        },
        "description": "Removes an existing user avatar. you cannot reverse this operation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_download_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "file"
          ]
        },
        "description": "Returns the contents of a file in binary format.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"version\": \"\",\n  \"access_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_download_zip_archive",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/zip/archive",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "zip",
            "archive"
          ]
        },
        "description": "Returns the contents of a `zip` archive in binary format. this url does not require any form of authentication and could be used in a user's browser to download the archive to a user's device. by defa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"zip_download_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_extract_metadata_freeform",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/extract/metadata/freeform",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "extract",
            "metadata",
            "freeform"
          ]
        },
        "description": "Sends an ai request to supported large language models (llms) and extracts metadata in form of key-value pairs. in this request, both the prompt and the output can be freeform. metadata template setup",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"prompt\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_extract_metadata_structured",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/extract/metadata/structured",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "extract",
            "metadata",
            "structured"
          ]
        },
        "description": "Sends an ai request to supported large language models (llms) and returns extracted metadata as a set of key-value pairs. for this request, you either need a metadata template or a list of fields you ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"fields\": \"\",\n  \"metadata__template__type\": \"\",\n  \"metadata__template__scope\": \"\",\n  \"metadata__template__template__key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_find_app_item_for_shared_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/app/item/for/shared/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "app",
            "item",
            "for",
            "shared",
            "link"
          ]
        },
        "description": "Returns the app item represented by a shared link. the link can originate from the current enterprise or another.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_find_file_for_shared_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/file/for/shared/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "file",
            "for",
            "shared",
            "link"
          ]
        },
        "description": "Returns the file represented by a shared link. a shared file can be represented by a shared link, which can originate within the current enterprise or within another. this endpoint allows an applicati",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_find_folder_for_shared_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/folder/for/shared/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "folder",
            "for",
            "shared",
            "link"
          ]
        },
        "description": "Return the folder represented by a shared link. a shared folder can be represented by a shared link, which can originate within the current enterprise or within another. this endpoint allows an applic",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_find_metadata_template_by_instance_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/metadata/template/by/instance/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "metadata",
            "template",
            "by",
            "instance",
            "id"
          ]
        },
        "description": "Finds a metadata template by searching for the id of an instance of the template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"metadata_instance_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_find_web_link_for_shared_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/web/link/for/shared/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "web",
            "link",
            "for",
            "shared",
            "link"
          ]
        },
        "description": "Returns the web link represented by a shared link. a shared web link can be represented by a shared link, which can originate within the current enterprise or within another. this endpoint allows an a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_force_apply_metadata_cascade_policy_to_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/force/apply/metadata/cascade/policy/to/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "force",
            "apply",
            "metadata",
            "cascade",
            "policy",
            "to",
            "folder"
          ]
        },
        "description": "Force the metadata on a folder with a metadata cascade policy to be applied to all of its children. this can be used after creating a new cascade policy to enforce the metadata to be cascaded down to ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"conflict_resolution\": \"\",\n  \"metadata_cascade_policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_generate_text",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/text",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "text"
          ]
        },
        "description": "Sends an ai request to supported large language models (llms) and returns generated text based on the provided prompt.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"prompt\": \"\",\n  \"dialogue_history\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_ai_agent_by_agent_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ai/agent/by/agent/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ai",
            "agent",
            "by",
            "agent",
            "id"
          ]
        },
        "description": "Gets an ai agent using the `agent id` parameter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_ai_agent_default_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ai/agent/default/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ai",
            "agent",
            "default",
            "configuration"
          ]
        },
        "description": "Get the ai agent default config",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"model\": \"\",\n  \"language\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_allowed_collaboration_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/allowed/collaboration/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "allowed",
            "collaboration",
            "domain"
          ]
        },
        "description": "Returns a domain that has been deemed safe to create collaborations for within the current enterprise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collaboration_whitelist_entry_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_box_sign_request_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/box/sign/request/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "box",
            "sign",
            "request",
            "by",
            "id"
          ]
        },
        "description": "Gets a sign request by id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sign_request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_box_sign_template_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/box/sign/template/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "box",
            "sign",
            "template",
            "by",
            "id"
          ]
        },
        "description": "Fetches details of a specific box sign template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_classification_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/classification/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "classification",
            "on",
            "file"
          ]
        },
        "description": "Retrieves the classification metadata instance that has been applied to a file. this api can also be called by including the enterprise id in the url explicitly, for example `/files/:id//enterprise 12",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_classification_on_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/classification/on/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "classification",
            "on",
            "folder"
          ]
        },
        "description": "Retrieves the classification metadata instance that has been applied to a folder. this api can also be called by including the enterprise id in the url explicitly, for example `/folders/:id/enterprise",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_collaboration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/collaboration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "collaboration"
          ]
        },
        "description": "Retrieves a single collaboration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"collaboration_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_collection_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/collection/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "collection",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a collection by its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "comment"
          ]
        },
        "description": "Retrieves the message and metadata for a specific comment, as well as information on the user who created the comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"comment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_current_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "user"
          ]
        },
        "description": "Retrieves information about the user who is currently authenticated. in the case of a client-side authenticated oauth 2.0 application this will be the user who authorized the app. in the case of a jwt",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_device_pin",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/device/pin",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "device",
            "pin"
          ]
        },
        "description": "Retrieves information about an individual device pin.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"device_pinner_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_events_long_poll_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/events/long/poll/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "events",
            "long",
            "poll",
            "endpoint"
          ]
        },
        "description": "The listevents endpoint provides information about the events available in the box system. this options method allows developers to discover the capabilities and requirements for interacting with the ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_file_information",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/file/information",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "file",
            "information"
          ]
        },
        "description": "Retrieves the details about a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_file_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/file/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "file",
            "request"
          ]
        },
        "description": "Retrieves the information about a file request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_file_thumbnail",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/file/thumbnail",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "file",
            "thumbnail"
          ]
        },
        "description": "Retrieves a thumbnail, or smaller image representation, of a file. sizes of `32x32`,`64x64`, `128x128`, and `256x256` can be returned in the `.png` format and sizes of `32x32`, `160x160`, and `320x320",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"extension\": \"\",\n  \"max_width\": 0,\n  \"min_width\": 0,\n  \"max_height\": 0,\n  \"min_height\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_file_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/file/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "file",
            "version"
          ]
        },
        "description": "Retrieve a specific version of a file. versions are only tracked for box users with premium accounts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"file_id\": \"\",\n  \"file_version_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_file_version_legal_hold",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/file/version/legal/hold",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "file",
            "version",
            "legal",
            "hold"
          ]
        },
        "description": "Retrieves information about the legal hold policies assigned to a file version.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_version_legal_hold_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_file_versions_under_retention",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/file/versions/under/retention",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "file",
            "versions",
            "under",
            "retention"
          ]
        },
        "description": "Returns a list of file versions under retention for a retention policy assignment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"retention_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_files_under_retention",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/files/under/retention",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "files",
            "under",
            "retention"
          ]
        },
        "description": "Returns a list of files under retention for a retention policy assignment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"retention_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_folder_information",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/folder/information",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "folder",
            "information"
          ]
        },
        "description": "Retrieves details for a folder, including the first 100 entries in the folder. passing `sort`, `direction`, `offset`, and `limit` parameters in query allows you to manage the list of returned [folder ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"offset\": 0,\n  \"direction\": \"\",\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "group"
          ]
        },
        "description": "Retrieves information about a group. only members of this group or users with admin-level permissions will be able to use this api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_group_membership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/group/membership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "group",
            "membership"
          ]
        },
        "description": "Retrieves a specific group membership. only admins of this group or users with admin-level permissions will be able to use this api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"group_membership_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_legal_hold_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/legal/hold/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "legal",
            "hold",
            "policy"
          ]
        },
        "description": "Retrieve a legal hold policy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"legal_hold_policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_legal_hold_policy_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/legal/hold/policy/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "legal",
            "hold",
            "policy",
            "assignment"
          ]
        },
        "description": "Retrieve a legal hold policy assignment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"legal_hold_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_metadata_cascade_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/metadata/cascade/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "metadata",
            "cascade",
            "policy"
          ]
        },
        "description": "Retrieve a specific metadata cascade policy assigned to a folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"metadata_cascade_policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_metadata_instance_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/metadata/instance/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "metadata",
            "instance",
            "on",
            "file"
          ]
        },
        "description": "Retrieves the instance of a metadata template that has been applied to a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"file_id\": \"\",\n  \"template_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_metadata_instance_on_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/metadata/instance/on/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "metadata",
            "instance",
            "on",
            "folder"
          ]
        },
        "description": "Retrieves the instance of a metadata template that has been applied to a folder. this can not be used on the root folder with id `0`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"folder_id\": \"\",\n  \"template_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_metadata_template_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/metadata/template/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "metadata",
            "template",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a metadata template by its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_metadata_template_by_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/metadata/template/by/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "metadata",
            "template",
            "by",
            "name"
          ]
        },
        "description": "Retrieves a metadata template by its `scope` and `templatekey` values. to find the `scope` and `templatekey` for a template, list all templates for an enterprise or globally, or list all templates app",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"template_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_retention_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/retention/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "retention",
            "on",
            "file"
          ]
        },
        "description": "Returns information about a file version retention. **note**: file retention api is now **deprecated**. to get information about files and file versions under retention, see [files under retention](e:",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_version_retention_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_retention_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/retention/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "retention",
            "policy"
          ]
        },
        "description": "Retrieves a retention policy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"retention_policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_retention_policy_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/retention/policy/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "retention",
            "policy",
            "assignment"
          ]
        },
        "description": "Retrieves a retention policy assignment",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"retention_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_shared_link_for_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shared/link/for/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shared",
            "link",
            "for",
            "file"
          ]
        },
        "description": "Gets the information for a shared link on a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_shared_link_for_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shared/link/for/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shared",
            "link",
            "for",
            "folder"
          ]
        },
        "description": "Gets the information for a shared link on a folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_shared_link_for_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shared/link/for/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shared",
            "link",
            "for",
            "web",
            "link"
          ]
        },
        "description": "Gets the information for a shared link on a web link.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"web_link_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_shield_information_barrier_report_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shield/information/barrier/report/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shield",
            "information",
            "barrier",
            "report",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a shield information barrier report by its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"shield_information_barrier_report_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_shield_information_barrier_segment_member_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shield/information/barrier/segment/member/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shield",
            "information",
            "barrier",
            "segment",
            "member",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a shield information barrier segment member by its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"shield_information_barrier_segment_member_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_shield_information_barrier_segment_restriction_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shield/information/barrier/segment/restriction/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shield",
            "information",
            "barrier",
            "segment",
            "restriction",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a shield information barrier segment restriction based on provided id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"shield_information_barrier_segment_restriction_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_shield_information_barrier_segment_with_specified_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shield/information/barrier/segment/with/specified/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shield",
            "information",
            "barrier",
            "segment",
            "with",
            "specified",
            "id"
          ]
        },
        "description": "Retrieves shield information barrier segment based on provided id..",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"shield_information_barrier_segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_shield_information_barrier_with_specified_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shield/information/barrier/with/specified/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shield",
            "information",
            "barrier",
            "with",
            "specified",
            "id"
          ]
        },
        "description": "Get shield information barrier based on provided id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"shield_information_barrier_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_storage_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/storage/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "storage",
            "policy"
          ]
        },
        "description": "Fetches a specific storage policy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"storage_policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_storage_policy_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/storage/policy/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "storage",
            "policy",
            "assignment"
          ]
        },
        "description": "Fetches a specific storage policy assignment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"storage_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task"
          ]
        },
        "description": "Retrieves information about a specific task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_task_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task",
            "assignment"
          ]
        },
        "description": "Retrieves information about a task assignment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_terms_of_service",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/terms/of/service",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "terms",
            "of",
            "service"
          ]
        },
        "description": "Fetches a specific terms of service.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"terms_of_service_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_trashed_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/trashed/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "trashed",
            "file"
          ]
        },
        "description": "Retrieves a file that has been moved to the trash. please note that only if the file itself has been moved to the trash can it be retrieved with this api call. if instead one of its parent folders was",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_trashed_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/trashed/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "trashed",
            "folder"
          ]
        },
        "description": "Retrieves a folder that has been moved to the trash. please note that only if the folder itself has been moved to the trash can it be retrieved with this api call. if instead one of its parent folders",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_trashed_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/trashed/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "trashed",
            "web",
            "link"
          ]
        },
        "description": "Retrieves a web link that has been moved to the trash.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"web_link_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_upload_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/upload/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "upload",
            "session"
          ]
        },
        "description": "Return information about an upload session. the actual endpoint url is returned by the [`create upload session`](e://post-files-upload-sessions) endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"upload_session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user"
          ]
        },
        "description": "Retrieves information about a user in the enterprise. the application and the authenticated user need to have the permission to look up users in the entire enterprise. this endpoint also returns a lim",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_user_avatar",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/avatar",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "avatar"
          ]
        },
        "description": "Retrieves an image of a the user's avatar.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_user_exempt_from_collaboration_domain_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/exempt/from/collaboration/domain/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "exempt",
            "from",
            "collaboration",
            "domain",
            "restrictions"
          ]
        },
        "description": "Returns a users who has been exempt from the collaboration domain restrictions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collaboration_whitelist_exempt_target_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_user_invite_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/invite/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "invite",
            "status"
          ]
        },
        "description": "Returns the status of a user invite.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"invite_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_watermark_for_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/watermark/for/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "watermark",
            "for",
            "folder"
          ]
        },
        "description": "Retrieve the watermark for a folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_watermark_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/watermark/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "watermark",
            "on",
            "file"
          ]
        },
        "description": "Retrieve the watermark for a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "web",
            "link"
          ]
        },
        "description": "Retrieve information about a web link.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"web_link_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhook"
          ]
        },
        "description": "Retrieves a specific webhook",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_get_zip_download_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/zip/download/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "zip",
            "download",
            "status"
          ]
        },
        "description": "Returns the download status of a `zip` archive, allowing an application to inspect the progress of the download as well as the number of items that might have been skipped. this endpoint can only be a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"zip_download_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_ai_agents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/ai/agents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "ai",
            "agents"
          ]
        },
        "description": "Lists ai agents based on the provided parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"agent_state\": \"\",\n  \"include_box_default\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_all_classifications",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/classifications",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "classifications"
          ]
        },
        "description": "Retrieves the classification metadata template and lists all the classifications available to this enterprise. this api can also be called by including the enterprise id in the url explicitly, for exa",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_all_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "collections"
          ]
        },
        "description": "Retrieves all collections for a given user. currently, only the `favorites` collection is supported.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_all_file_versions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/file/versions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "file",
            "versions"
          ]
        },
        "description": "Retrieve a list of the past versions for a file. versions are only tracked by box users with premium accounts. to fetch the id of the current version of a file, use the `get /file/:id` api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"offset\": 0,\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_all_global_metadata_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/global/metadata/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "global",
            "metadata",
            "templates"
          ]
        },
        "description": "Used to retrieve all generic, global metadata templates available to all enterprises using box.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_all_legal_hold_policies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/legal/hold/policies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "legal",
            "hold",
            "policies"
          ]
        },
        "description": "Retrieves a list of legal hold policies that belong to an enterprise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"policy_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_all_metadata_templates_for_enterprise",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/metadata/templates/for/enterprise",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "metadata",
            "templates",
            "for",
            "enterprise"
          ]
        },
        "description": "Used to retrieve all metadata templates created to be used specifically within the user's enterprise",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_all_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "webhooks"
          ]
        },
        "description": "Returns all defined webhooks for the requesting application. this api only returns webhooks that are applied to files or folders that are owned by the authenticated user. this means that an admin can ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_allowed_collaboration_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/allowed/collaboration/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "allowed",
            "collaboration",
            "domains"
          ]
        },
        "description": "Returns the list domains that have been deemed safe to create collaborations for within the current enterprise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_box_sign_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/box/sign/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "box",
            "sign",
            "requests"
          ]
        },
        "description": "Gets signature requests created by a user. if the `sign files` and/or `parent folder` are deleted, the signature request will not return in the list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"senders\": \"\",\n  \"shared_requests\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_box_sign_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/box/sign/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "box",
            "sign",
            "templates"
          ]
        },
        "description": "Gets box sign templates created by a user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_box_skill_cards_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/box/skill/cards/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "box",
            "skill",
            "cards",
            "on",
            "file"
          ]
        },
        "description": "List the box skills metadata cards that are attached to a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_collection_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/collection/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "collection",
            "items"
          ]
        },
        "description": "Retrieves the files and/or folders contained within this collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"offset\": 0,\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_enterprise_device_pins",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/enterprise/device/pins",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "enterprise",
            "device",
            "pins"
          ]
        },
        "description": "Retrieves all the device pins within an enterprise. the user must have admin privileges, and the application needs the \"manage enterprise\" scope to make this call.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"direction\": \"\",\n  \"enterprise_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_enterprise_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/enterprise/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "enterprise",
            "users"
          ]
        },
        "description": "Returns a list of all users for the enterprise along with their `user id`, `public name`, and `login`. the application and the authenticated user need to have the permission to look up users in the en",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"offset\": 0,\n  \"usemarker\": false,\n  \"user_type\": \"\",\n  \"filter_term\": \"\",\n  \"external_app_user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_file_app_item_associations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/file/app/item/associations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "file",
            "app",
            "item",
            "associations"
          ]
        },
        "description": "**this is a beta feature, which means that its availability might be limited.** returns all app items the file is associated with. this includes app items associated with ancestors of the file. assumi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"file_id\": \"\",\n  \"application_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_file_collaborations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/file/collaborations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "file",
            "collaborations"
          ]
        },
        "description": "Retrieves a list of pending and active collaborations for a file. this returns all the users that have access to the file or have been invited to the file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_file_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/file/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "file",
            "comments"
          ]
        },
        "description": "Retrieves a list of comments for a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"offset\": 0,\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_file_version_legal_holds",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/file/version/legal/holds",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "file",
            "version",
            "legal",
            "holds"
          ]
        },
        "description": "Get a list of file versions on legal hold for a legal hold assignment. due to ongoing re-architecture efforts this api might not return all file versions for this policy id. instead, this api will onl",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_file_version_retentions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/file/version/retentions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "file",
            "version",
            "retentions"
          ]
        },
        "description": "Retrieves all file version retentions for the given enterprise. **note**: file retention api is now **deprecated**. to get information about files and file versions under retention, see [files under r",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"file_id\": \"\",\n  \"policy_id\": \"\",\n  \"file_version_id\": \"\",\n  \"disposition_after\": \"\",\n  \"disposition_action\": \"\",\n  \"disposition_before\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_folder_app_item_associations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/folder/app/item/associations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "folder",
            "app",
            "item",
            "associations"
          ]
        },
        "description": "**this is a beta feature, which means that its availability might be limited.** returns all app items the folder is associated with. this includes app items associated with ancestors of the folder. as",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"folder_id\": \"\",\n  \"application_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_folder_collaborations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/folder/collaborations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "folder",
            "collaborations"
          ]
        },
        "description": "Retrieves a list of pending and active collaborations for a folder. this returns all the users that have access to the folder or have been invited to the folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_folder_locks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/folder/locks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "folder",
            "locks"
          ]
        },
        "description": "Retrieves folder lock details for a given folder. you must be authenticated as the owner or co-owner of the folder to use this endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_group_collaborations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/group/collaborations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "group",
            "collaborations"
          ]
        },
        "description": "Retrieves all the collaborations for a group. the user must have admin permissions to inspect enterprise's groups. each collaboration object has details on which files or folders the group has access ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_groups_for_enterprise",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/groups/for/enterprise",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "groups",
            "for",
            "enterprise"
          ]
        },
        "description": "Retrieves all of the groups for a given enterprise. the user must have admin permissions to inspect enterprise's groups.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"offset\": 0,\n  \"filter_term\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_items_in_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/items/in/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "items",
            "in",
            "folder"
          ]
        },
        "description": "Retrieves a page of items in a folder. these items can be files, folders, and web links. to request more information about the folder itself, like its size, use the [get a folder](#get-folders-id) end",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"offset\": 0,\n  \"direction\": \"\",\n  \"folder_id\": \"\",\n  \"usemarker\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_legal_hold_policy_assignments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/legal/hold/policy/assignments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "legal",
            "hold",
            "policy",
            "assignments"
          ]
        },
        "description": "Retrieves a list of items a legal hold policy has been assigned to.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"policy_id\": \"\",\n  \"assign_to_id\": \"\",\n  \"assign_to_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_members_of_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/members/of/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "members",
            "of",
            "group"
          ]
        },
        "description": "Retrieves all the members for a group. only members of this group or users with admin-level permissions will be able to use this api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_metadata_cascade_policies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/metadata/cascade/policies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "metadata",
            "cascade",
            "policies"
          ]
        },
        "description": "Retrieves a list of all the metadata cascade policies that are applied to a given folder. this can not be used on the root folder with id `0`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marker\": \"\",\n  \"offset\": 0,\n  \"folder_id\": \"\",\n  \"owner_enterprise_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_metadata_instances_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/metadata/instances/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "metadata",
            "instances",
            "on",
            "file"
          ]
        },
        "description": "Retrieves all metadata for a given file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_metadata_instances_on_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/metadata/instances/on/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "metadata",
            "instances",
            "on",
            "folder"
          ]
        },
        "description": "Retrieves all metadata for a given folder. this can not be used on the root folder with id `0`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_parts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/parts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "parts"
          ]
        },
        "description": "Return a list of the chunks uploaded to the upload session so far. the actual endpoint url is returned by the [`create upload session`](e://post-files-upload-sessions) and [`get upload session`](e://g",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"upload_session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_pending_collaborations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pending/collaborations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pending",
            "collaborations"
          ]
        },
        "description": "Retrieves all pending collaboration invites for this user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"offset\": 0,\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_previous_file_versions_for_legal_hold_policy_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/previous/file/versions/for/legal/hold/policy/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "previous",
            "file",
            "versions",
            "for",
            "legal",
            "hold",
            "policy",
            "assignment"
          ]
        },
        "description": "List previous file versions for legal hold policy assignment",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"legal_hold_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_recently_accessed_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/recently/accessed/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "recently",
            "accessed",
            "items"
          ]
        },
        "description": "Returns information about the recent items accessed by a user, either in the last 90 days or up to the last 1000 items accessed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_retention_policies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/retention/policies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "retention",
            "policies"
          ]
        },
        "description": "Retrieves all of the retention policies for an enterprise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"policy_name\": \"\",\n  \"policy_type\": \"\",\n  \"created_by_user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_retention_policy_assignments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/retention/policy/assignments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "retention",
            "policy",
            "assignments"
          ]
        },
        "description": "Returns a list of all retention policy assignments associated with a specified retention policy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"retention_policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_shield_information_barrier_reports",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/shield/information/barrier/reports",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "shield",
            "information",
            "barrier",
            "reports"
          ]
        },
        "description": "Lists shield information barrier reports.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"shield_information_barrier_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_shield_information_barrier_segment_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/shield/information/barrier/segment/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "shield",
            "information",
            "barrier",
            "segment",
            "members"
          ]
        },
        "description": "Lists shield information barrier segment members based on provided segment ids.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"shield_information_barrier_segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_shield_information_barrier_segment_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/shield/information/barrier/segment/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "shield",
            "information",
            "barrier",
            "segment",
            "restrictions"
          ]
        },
        "description": "Lists shield information barrier segment restrictions based on provided segment id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"shield_information_barrier_segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_shield_information_barrier_segments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/shield/information/barrier/segments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "shield",
            "information",
            "barrier",
            "segments"
          ]
        },
        "description": "Retrieves a list of shield information barrier segment objects for the specified information barrier id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"shield_information_barrier_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_shield_information_barriers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/shield/information/barriers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "shield",
            "information",
            "barriers"
          ]
        },
        "description": "Retrieves a list of shield information barrier objects for the enterprise of jwt.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_slack_integration_mappings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/slack/integration/mappings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "slack",
            "integration",
            "mappings"
          ]
        },
        "description": "Lists [slack integration mappings](https://support.box.com/hc/en-us/articles/4415585987859-box-as-the-content-layer-for-slack) in a users' enterprise. you need admin or co-admin role to use this endpo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"box_item_id\": \"\",\n  \"box_item_type\": \"\",\n  \"partner_item_id\": \"\",\n  \"partner_item_type\": \"\",\n  \"is_manually_created\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_storage_policies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/storage/policies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "storage",
            "policies"
          ]
        },
        "description": "Fetches all the storage policies in the enterprise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_storage_policy_assignments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/storage/policy/assignments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "storage",
            "policy",
            "assignments"
          ]
        },
        "description": "Fetches all the storage policy assignment for an enterprise or user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"marker\": \"\",\n  \"resolved_for_id\": \"\",\n  \"resolved_for_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_task_assignments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/task/assignments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "task",
            "assignments"
          ]
        },
        "description": "Lists all of the assignments for a given task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_tasks_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tasks/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tasks",
            "on",
            "file"
          ]
        },
        "description": "Retrieves a list of all the tasks for a file. this endpoint does not support pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_teams_integration_mappings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/teams/integration/mappings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "teams",
            "integration",
            "mappings"
          ]
        },
        "description": "Lists [teams integration mappings](https://support.box.com/hc/en-us/articles/360044681474-using-box-for-teams) in a users' enterprise. you need admin or co-admin role to use this endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"box_item_id\": \"\",\n  \"box_item_type\": \"\",\n  \"partner_item_id\": \"\",\n  \"partner_item_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_terms_of_service_user_statuses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/terms/of/service/user/statuses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "terms",
            "of",
            "service",
            "user",
            "statuses"
          ]
        },
        "description": "Retrieves an overview of users and their status for a terms of service, including whether they have accepted the terms and when.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tos_id\": \"\",\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_terms_of_services",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/terms/of/services",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "terms",
            "of",
            "services"
          ]
        },
        "description": "Returns the current terms of service text and settings for the enterprise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tos_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_trashed_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/trashed/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "trashed",
            "items"
          ]
        },
        "description": "Retrieves the files and folders that have been moved to the trash. any attribute in the full files or folders objects can be passed in with the `fields` parameter to retrieve those specific attributes",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"offset\": 0,\n  \"direction\": \"\",\n  \"usemarker\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_user_and_enterprise_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/user/and/enterprise/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "user",
            "and",
            "enterprise",
            "events"
          ]
        },
        "description": "Returns up to a year of past events for a given user or for the entire enterprise. by default this returns events for the authenticated user. to retrieve events for the entire enterprise, set the `str",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"event_type\": \"\",\n  \"stream_type\": \"\",\n  \"created_after\": \"\",\n  \"created_before\": \"\",\n  \"stream_position\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_user_s_email_aliases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/user/s/email/aliases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "user",
            "s",
            "email",
            "aliases"
          ]
        },
        "description": "Retrieves all email aliases for a user. the collection does not include the primary login for the user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_user_s_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/user/s/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "user",
            "s",
            "groups"
          ]
        },
        "description": "Retrieves all the groups for a user. only members of this group or users with admin-level permissions will be able to use this api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_users_exempt_from_collaboration_domain_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users/exempt/from/collaboration/domain/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users",
            "exempt",
            "from",
            "collaboration",
            "domain",
            "restrictions"
          ]
        },
        "description": "Returns a list of users who have been exempt from the collaboration domain restrictions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_list_workflows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/workflows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "workflows"
          ]
        },
        "description": "Returns list of workflows that act on a given `folder id`, and have a flow with a trigger type of `workflow manual start`. you application must be authorized to use the `manage box relay` application ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"marker\": \"\",\n  \"folder_id\": \"\",\n  \"trigger_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_permanently_remove_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/permanently/remove/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "permanently",
            "remove",
            "file"
          ]
        },
        "description": "Permanently deletes a file that is in the trash. this action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_permanently_remove_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/permanently/remove/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "permanently",
            "remove",
            "folder"
          ]
        },
        "description": "Permanently deletes a folder that is in the trash. this action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_permanently_remove_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/permanently/remove/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "permanently",
            "remove",
            "web",
            "link"
          ]
        },
        "description": "Permanently deletes a web link that is in the trash. this action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"web_link_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_preflight_check_before_upload",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/preflight/check/before/upload",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "preflight",
            "check",
            "before",
            "upload"
          ]
        },
        "description": "Performs a check to verify that a file will be accepted by box before you upload the entire file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"size\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_promote_file_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/promote/file/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "promote",
            "file",
            "version"
          ]
        },
        "description": "Promote a specific version of a file. if previous versions exist, this method can be used to promote one of the older versions to the top of the version history. this creates a new copy of the old ver",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"type\": \"\",\n  \"fields\": \"\",\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_query_files_folders_by_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/files/folders/by/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "files",
            "folders",
            "by",
            "metadata"
          ]
        },
        "description": "Create a search using sql-like syntax to return items that match specific metadata. by default, this endpoint returns only the most basic info about the items for which the query matches. to get addit",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"from\": \"\",\n  \"limit\": 0,\n  \"query\": \"\",\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"order_by\": \"\",\n  \"query_params\": {},\n  \"ancestor_folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_refresh_access_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/refresh/access/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "refresh",
            "access",
            "token"
          ]
        },
        "description": "Refresh an access token using its client id, secret, and refresh token.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"client_id\": \"\",\n  \"grant_type\": \"\",\n  \"client_secret\": \"\",\n  \"refresh_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_box_skill_cards_from_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/box/skill/cards/from/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "box",
            "skill",
            "cards",
            "from",
            "file"
          ]
        },
        "description": "Removes any box skills cards metadata from a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_classification_from_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/classification/from/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "classification",
            "from",
            "file"
          ]
        },
        "description": "Removes any classifications from a file. this api can also be called by including the enterprise id in the url explicitly, for example `/files/:id//enterprise 12345/securityclassification-6vmvochwuwo`",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_classification_from_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/classification/from/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "classification",
            "from",
            "folder"
          ]
        },
        "description": "Removes any classifications from a folder. this api can also be called by including the enterprise id in the url explicitly, for example `/folders/:id/enterprise 12345/securityclassification-6vmvochwu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_collaboration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/collaboration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "collaboration"
          ]
        },
        "description": "Deletes a single collaboration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collaboration_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "comment"
          ]
        },
        "description": "Permanently deletes a comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"comment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_device_pin",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/device/pin",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "device",
            "pin"
          ]
        },
        "description": "Deletes an individual device pin.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"device_pinner_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_domain_from_list_of_allowed_collaboration_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/domain/from/list/of/allowed/collaboration/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "domain",
            "from",
            "list",
            "of",
            "allowed",
            "collaboration",
            "domains"
          ]
        },
        "description": "Removes a domain from the list of domains that have been deemed safe to create collaborations for within the current enterprise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collaboration_whitelist_entry_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_email_alias",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/email/alias",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "email",
            "alias"
          ]
        },
        "description": "Removes an email alias from a user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\",\n  \"email_alias_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_file_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/file/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "file",
            "version"
          ]
        },
        "description": "Move a file version to the trash. versions are only tracked for box users with premium accounts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"file_version_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "group"
          ]
        },
        "description": "Permanently deletes a group. only users with admin-level permissions will be able to use this api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_legal_hold_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/legal/hold/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "legal",
            "hold",
            "policy"
          ]
        },
        "description": "Delete an existing legal hold policy. this is an asynchronous process. the policy will not be fully deleted yet when the response returns.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"legal_hold_policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_metadata_cascade_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/metadata/cascade/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "metadata",
            "cascade",
            "policy"
          ]
        },
        "description": "Deletes a metadata cascade policy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"metadata_cascade_policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_metadata_instance_from_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/metadata/instance/from/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "metadata",
            "instance",
            "from",
            "file"
          ]
        },
        "description": "Deletes a piece of file metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"file_id\": \"\",\n  \"template_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_metadata_instance_from_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/metadata/instance/from/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "metadata",
            "instance",
            "from",
            "folder"
          ]
        },
        "description": "Deletes a piece of folder metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"folder_id\": \"\",\n  \"template_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_metadata_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/metadata/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "metadata",
            "template"
          ]
        },
        "description": "Delete a metadata template and its instances. this deletion is permanent and can not be reversed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"template_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_retention_policy_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/retention/policy/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "retention",
            "policy",
            "assignment"
          ]
        },
        "description": "Removes a retention policy assignment applied to content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"retention_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_shared_link_from_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/shared/link/from/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "shared",
            "link",
            "from",
            "file"
          ]
        },
        "description": "Removes a shared link from a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_shared_link_from_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/shared/link/from/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "shared",
            "link",
            "from",
            "folder"
          ]
        },
        "description": "Removes a shared link from a folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_shared_link_from_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/shared/link/from/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "shared",
            "link",
            "from",
            "web",
            "link"
          ]
        },
        "description": "Removes a shared link from a web link.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"web_link_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "task"
          ]
        },
        "description": "Removes a task from a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_upload_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/upload/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "upload",
            "session"
          ]
        },
        "description": "Abort an upload session and discard all data uploaded. this cannot be reversed. the actual endpoint url is returned by the [`create upload session`](e://post-files-upload-sessions) and [`get upload se",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"upload_session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_user_domain_exemption",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/user/domain/exemption",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "user",
            "domain",
            "exemption"
          ]
        },
        "description": "Removes a user's exemption from the restrictions set out by the allowed list of domains for collaborations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collaboration_whitelist_exempt_target_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_user_from_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/user/from/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "user",
            "from",
            "group"
          ]
        },
        "description": "Deletes a specific group membership. only admins of this group or users with admin-level permissions will be able to use this api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_membership_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_watermark_from_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/watermark/from/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "watermark",
            "from",
            "file"
          ]
        },
        "description": "Removes the watermark from a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_watermark_from_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/watermark/from/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "watermark",
            "from",
            "folder"
          ]
        },
        "description": "Removes the watermark from a folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "web",
            "link"
          ]
        },
        "description": "Deletes a web link.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"web_link_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_remove_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "webhook"
          ]
        },
        "description": "Deletes a webhook.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_request_access_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/request/access/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "request",
            "access",
            "token"
          ]
        },
        "description": "Request an access token using either a client-side obtained oauth 2.0 authorization code or a server-side jwt assertion. an access token is a string that enables box to verify that a request belongs t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"scope\": \"\",\n  \"resource\": \"\",\n  \"assertion\": \"\",\n  \"client_id\": \"\",\n  \"grant_type\": \"\",\n  \"actor_token\": \"\",\n  \"client_secret\": \"\",\n  \"refresh_token\": \"\",\n  \"subject_token\": \"\",\n  \"box_subject_id\": \"\",\n  \"box_shared_link\": \"\",\n  \"actor_token_type\": \"\",\n  \"box_subject_type\": \"\",\n  \"subject_token_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_resend_box_sign_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/resend/box/sign/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "resend",
            "box",
            "sign",
            "request"
          ]
        },
        "description": "Resends a signature request email to all outstanding signers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sign_request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_restore_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "file"
          ]
        },
        "description": "Restores a file that has been moved to the trash. an optional new parent id can be provided to restore the file to in case the original folder has been deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"fields\": \"\",\n  \"file_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_restore_file_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/file/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "file",
            "version"
          ]
        },
        "description": "Restores a specific version of a file after it was deleted. don't use this endpoint to restore box notes, as it works with file formats such as pdf, doc, pptx or similar.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"trashed_at\": \"\",\n  \"file_version_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_restore_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "folder"
          ]
        },
        "description": "Restores a folder that has been moved to the trash. an optional new parent id can be provided to restore the folder to in case the original folder has been deleted. during this operation, part of the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"fields\": \"\",\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_restore_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "web",
            "link"
          ]
        },
        "description": "Restores a web link that has been moved to the trash. an optional new parent id can be provided to restore the web link to in case the original folder has been deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"fields\": \"\",\n  \"web_link_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_review_files_on_legal_hold_policy_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/review/files/on/legal/hold/policy/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "review",
            "files",
            "on",
            "legal",
            "hold",
            "policy",
            "assignment"
          ]
        },
        "description": "Get a list of files with current file versions for a legal hold assignment. in some cases you may want to get previous file versions instead. in these cases, use the `get /legal hold policy assignment",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"marker\": \"\",\n  \"legal_hold_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_revoke_access_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/revoke/access/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "revoke",
            "access",
            "token"
          ]
        },
        "description": "Revoke an active access token, effectively logging a user out that has been previously authenticated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"token\": \"\",\n  \"client_id\": \"\",\n  \"client_secret\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_search_for_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/for/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "for",
            "content"
          ]
        },
        "description": "Searches for files, folders, web links, and shared files across the users content or across the entire enterprise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"limit\": 0,\n  \"query\": \"\",\n  \"scope\": \"\",\n  \"fields\": \"\",\n  \"offset\": 0,\n  \"direction\": \"\",\n  \"mdfilters\": \"\",\n  \"size_range\": \"\",\n  \"content_types\": \"\",\n  \"trash_content\": \"\",\n  \"owner_user_ids\": \"\",\n  \"file_extensions\": \"\",\n  \"created_at_range\": \"\",\n  \"deleted_at_range\": \"\",\n  \"deleted_user_ids\": \"\",\n  \"updated_at_range\": \"\",\n  \"ancestor_folder_ids\": \"\",\n  \"recent_updater_user_ids\": \"\",\n  \"include_recent_shared_links\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_starts_workflow_based_on_request_body",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/starts/workflow/based/on/request/body",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "starts",
            "workflow",
            "based",
            "on",
            "request",
            "body"
          ]
        },
        "description": "Initiates a flow with a trigger type of `workflow manual start`. you application must be authorized to use the `manage box relay` application scope within the developer console.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"files\": \"\",\n  \"flow__id\": \"\",\n  \"outcomes\": \"\",\n  \"flow__type\": \"\",\n  \"folder__id\": \"\",\n  \"workflow_id\": \"\",\n  \"folder__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_transfer_owned_folders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/transfer/owned/folders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "transfer",
            "owned",
            "folders"
          ]
        },
        "description": "Transfers ownership of a specific folder (with id 0) from one user to another in the box cloud storage system. this endpoint should be used when you need to change the owner of a user's root folder, e",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"notify\": false,\n  \"user_id\": \"\",\n  \"owned__by__id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_unassign_legal_hold_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unassign/legal/hold/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unassign",
            "legal",
            "hold",
            "policy"
          ]
        },
        "description": "Remove a legal hold from an item. this is an asynchronous process. the policy will not be fully removed yet when the response returns.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"legal_hold_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_unassign_storage_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unassign/storage/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unassign",
            "storage",
            "policy"
          ]
        },
        "description": "Delete a storage policy assignment. deleting a storage policy assignment on a user will have the user inherit the enterprise's default storage policy. there is a rate limit for calling this endpoint o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"storage_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_unassign_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unassign/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unassign",
            "task"
          ]
        },
        "description": "Deletes a specific task assignment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_ai_agent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/ai/agent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "ai",
            "agent"
          ]
        },
        "description": "Updates an ai agent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"agent_id\": \"\",\n  \"ask__type\": \"\",\n  \"access_state\": \"\",\n  \"extract__type\": \"\",\n  \"icon_reference\": \"\",\n  \"text__gen__type\": \"\",\n  \"allowed_entities\": \"\",\n  \"ask__description\": \"\",\n  \"ask__access__state\": \"\",\n  \"extract__description\": \"\",\n  \"extract__access__state\": \"\",\n  \"text__gen__description\": \"\",\n  \"text__gen__access__state\": \"\",\n  \"ask__custom__instructions\": \"\",\n  \"extract__custom__instructions\": \"\",\n  \"text__gen__custom__instructions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_all_box_skill_cards_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/all/box/skill/cards/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "all",
            "box",
            "skill",
            "cards",
            "on",
            "file"
          ]
        },
        "description": "An alternative method that can be used to overwrite and update all box skill metadata cards on a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"file__id\": \"\",\n  \"skill_id\": \"\",\n  \"file__type\": \"\",\n  \"usage__unit\": \"\",\n  \"usage__value\": 0,\n  \"metadata__cards\": \"\",\n  \"file__version__id\": \"\",\n  \"file__version__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_collaboration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/collaboration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "collaboration"
          ]
        },
        "description": "Updates a collaboration. can be used to change the owner of an item, or to accept collaboration invites.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"status\": \"\",\n  \"expires_at\": \"\",\n  \"can_view_path\": false,\n  \"collaboration_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "comment"
          ]
        },
        "description": "Update the message of a comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"message\": \"\",\n  \"comment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "file"
          ]
        },
        "description": "Updates a file. this can be used to rename or move a file, create a shared link, or lock a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"fields\": \"\",\n  \"file_id\": \"\",\n  \"collections\": \"\",\n  \"description\": \"\",\n  \"lock__access\": \"\",\n  \"disposition_at\": \"\",\n  \"lock__expires__at\": \"\",\n  \"permissions__can__download\": \"\",\n  \"lock__is__download__prevented\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_file_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/file/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "file",
            "request"
          ]
        },
        "description": "Updates a file request. this can be used to activate or deactivate a file request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"status\": \"\",\n  \"expires_at\": \"\",\n  \"description\": \"\",\n  \"file_request_id\": \"\",\n  \"is_email_required\": false,\n  \"is_description_required\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "folder"
          ]
        },
        "description": "Updates a folder. this can be also be used to move the folder, create shared links, update collaborations, and more.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"fields\": \"\",\n  \"folder_id\": \"\",\n  \"sync_state\": \"\",\n  \"collections\": \"\",\n  \"description\": \"\",\n  \"can_non_owners_invite\": false,\n  \"can_non_owners_view_collaborators\": false,\n  \"is_collaboration_restricted_to_enterprise\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "group"
          ]
        },
        "description": "Updates a specific group. only admins of this group or users with admin-level permissions will be able to use this api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"fields\": \"\",\n  \"group_id\": \"\",\n  \"provenance\": \"\",\n  \"description\": \"\",\n  \"invitability_level\": \"\",\n  \"external_sync_identifier\": \"\",\n  \"member_viewability_level\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_group_membership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/group/membership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "group",
            "membership"
          ]
        },
        "description": "Updates a user's group membership. only admins of this group or users with admin-level permissions will be able to use this api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"fields\": \"\",\n  \"group_membership_id\": \"\",\n  \"configurable_permissions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_legal_hold_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/legal/hold/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "legal",
            "hold",
            "policy"
          ]
        },
        "description": "Update legal hold policy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"description\": \"\",\n  \"policy_name\": \"\",\n  \"release_notes\": \"\",\n  \"legal_hold_policy_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_retention_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/retention/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "retention",
            "policy"
          ]
        },
        "description": "Updates a retention policy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"description\": \"\",\n  \"policy_name\": \"\",\n  \"retention_type\": \"\",\n  \"retention_length\": \"\",\n  \"disposition_action\": \"\",\n  \"are_owners_notified\": false,\n  \"retention_policy_id\": \"\",\n  \"can_owner_extend_retention\": false,\n  \"custom_notification_recipients\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_shared_link_on_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/shared/link/on/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "shared",
            "link",
            "on",
            "file"
          ]
        },
        "description": "Updates a shared link on a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"file_id\": \"\",\n  \"shared__link__access\": \"\",\n  \"shared__link__password\": \"\",\n  \"shared__link__unshared__at\": \"\",\n  \"shared__link__vanity__name\": \"\",\n  \"shared__link__permissions__can__edit\": false,\n  \"shared__link__permissions__can__preview\": false,\n  \"shared__link__permissions__can__download\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_shared_link_on_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/shared/link/on/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "shared",
            "link",
            "on",
            "folder"
          ]
        },
        "description": "Updates a shared link on a folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"folder_id\": \"\",\n  \"shared__link__access\": \"\",\n  \"shared__link__password\": \"\",\n  \"shared__link__unshared__at\": \"\",\n  \"shared__link__vanity__name\": \"\",\n  \"shared__link__permissions__can__edit\": false,\n  \"shared__link__permissions__can__preview\": false,\n  \"shared__link__permissions__can__download\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_shared_link_on_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/shared/link/on/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "shared",
            "link",
            "on",
            "web",
            "link"
          ]
        },
        "description": "Updates a shared link on a web link.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"web_link_id\": \"\",\n  \"shared__link__access\": \"\",\n  \"shared__link__password\": \"\",\n  \"shared__link__unshared__at\": \"\",\n  \"shared__link__vanity__name\": \"\",\n  \"shared__link__permissions__can__edit\": false,\n  \"shared__link__permissions__can__preview\": false,\n  \"shared__link__permissions__can__download\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_shield_information_barrier_segment_with_specified_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/shield/information/barrier/segment/with/specified/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "shield",
            "information",
            "barrier",
            "segment",
            "with",
            "specified",
            "id"
          ]
        },
        "description": "Update shield information barrier segment with specified id",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"description\": \"\",\n  \"shield_information_barrier_segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_slack_integration_mapping",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/slack/integration/mapping",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "slack",
            "integration",
            "mapping"
          ]
        },
        "description": "Updates a [slack integration mapping](https://support.box.com/hc/en-us/articles/4415585987859-box-as-the-content-layer-for-slack). supports updating the box folder id and options. you need admin or co",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"integration_mapping_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_storage_policy_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/storage/policy/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "storage",
            "policy",
            "assignment"
          ]
        },
        "description": "Updates a specific storage policy assignment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"storage__policy__id\": \"\",\n  \"storage__policy__type\": \"\",\n  \"storage_policy_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "task"
          ]
        },
        "description": "Updates a task. this can be used to update a task's configuration, or to update its completion state.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action\": \"\",\n  \"due_at\": \"\",\n  \"message\": \"\",\n  \"task_id\": \"\",\n  \"completion_rule\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_task_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/task/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "task",
            "assignment"
          ]
        },
        "description": "Updates a task assignment. this endpoint can be used to update the state of a task assigned to a user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"message\": \"\",\n  \"resolution_state\": \"\",\n  \"task_assignment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_teams_integration_mapping",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/teams/integration/mapping",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "teams",
            "integration",
            "mapping"
          ]
        },
        "description": "Updates a [teams integration mapping](https://support.box.com/hc/en-us/articles/360044681474-using-box-for-teams). supports updating the box folder id and options. you need admin or co-admin role to u",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"integration_mapping_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_terms_of_service",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/terms/of/service",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "terms",
            "of",
            "service"
          ]
        },
        "description": "Updates a specific terms of service.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"status\": \"\",\n  \"terms_of_service_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_terms_of_service_status_for_existing_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/terms/of/service/status/for/existing/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "terms",
            "of",
            "service",
            "status",
            "for",
            "existing",
            "user"
          ]
        },
        "description": "Updates the status for a terms of service for a user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"is_accepted\": false,\n  \"terms_of_service_user_status_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "user"
          ]
        },
        "description": "Updates a managed or app user in an enterprise. this endpoint is only available to users and applications with the right admin permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"role\": \"\",\n  \"login\": \"\",\n  \"phone\": \"\",\n  \"fields\": \"\",\n  \"notify\": false,\n  \"status\": \"\",\n  \"address\": \"\",\n  \"user_id\": \"\",\n  \"language\": \"\",\n  \"timezone\": \"\",\n  \"job_title\": \"\",\n  \"enterprise\": \"\",\n  \"space_amount\": 0,\n  \"tracking_codes\": \"\",\n  \"is_sync_enabled\": false,\n  \"external_app_user_id\": \"\",\n  \"can_see_managed_users\": false,\n  \"is_password_reset_required\": false,\n  \"notification__email__email\": \"\",\n  \"is_exempt_from_device_limits\": false,\n  \"is_external_collab_restricted\": false,\n  \"is_exempt_from_login_verification\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_web_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/web/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "web",
            "link"
          ]
        },
        "description": "Updates a web link object.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\",\n  \"description\": \"\",\n  \"web_link_id\": \"\",\n  \"shared__link__access\": \"\",\n  \"shared__link__password\": \"\",\n  \"shared__link__unshared__at\": \"\",\n  \"shared__link__vanity__name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_update_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhook"
          ]
        },
        "description": "Updates a webhook.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"address\": \"\",\n  \"triggers\": \"\",\n  \"target__id\": \"\",\n  \"webhook_id\": \"\",\n  \"target__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_upload_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "file"
          ]
        },
        "description": "Uploads a small file to box. for file sizes over 50mb we recommend using the chunk upload apis. the `attributes` part of the body must come **before** the `file` part. requests that do not follow this",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"fields\": \"\",\n  \"attributes\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_upload_file_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/file/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "file",
            "version"
          ]
        },
        "description": "Update a file's content. for file sizes over 50mb we recommend using the chunk upload apis. the `attributes` part of the body must come **before** the `file` part. requests that do not follow this for",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"fields\": \"\",\n  \"file_id\": \"\",\n  \"attributes\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "box_upload_part_of_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/part/of/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "part",
            "of",
            "file"
          ]
        },
        "description": "Uploads a chunk of a file for an upload session. the actual endpoint url is returned by the [`create upload session`](e://post-files-upload-sessions) and [`get upload session`](e://get-files-upload-se",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"upload_session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}