Box · Schema

Create integration mapping request

A request to create a Slack Integration Mapping object

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
partner_item object
box_item object
options object
View JSON Schema on GitHub

JSON Schema

box-integrationmappingslackcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationMappingSlackCreateRequest",
  "title": "Create integration mapping request",
  "type": "object",
  "x-box-resource-id": "integration_mapping_slack_create_request",
  "description": "A request to create a\nSlack Integration Mapping object",
  "properties": {
    "partner_item": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IntegrationMappingPartnerItemSlack"
        }
      ],
      "nullable": false
    },
    "box_item": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IntegrationMappingBoxItemSlack"
        }
      ],
      "nullable": false
    },
    "options": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IntegrationMappingSlackOptions"
        }
      ],
      "nullable": false
    }
  },
  "required": [
    "partner_item",
    "box_item"
  ]
}