Skip to main content
API version 2024.0 A Slack specific representation of an integration mapping object.
id
string
example: 12345A unique identifier of a folder mapping (part of a composite key together with integration_type).
type
string
example: integration_mappingMapping type.Value is always integration_mapping
box_item
Folder (Mini)object
The Box folder, to which the object from the partner app domain (referenced in partner_item_id) is mapped.
created_at
string(date-time)
example: 2012-12-12T10:53:43-08:00When the integration mapping object was created.
created_by
User (Integration Mappings)object
An object representing the user who created the integration mapping.
integration_type
string
example: slackIdentifies the Box partner app, with which the mapping is associated. Currently only supports Slack. (part of the composite key together with id).Value is always slack
is_manually_created
boolean
example: trueIdentifies whether the mapping has been manually set (as opposed to being automatically created).
modified_at
string(date-time)
example: 2012-12-12T10:53:43-08:00When the integration mapping object was last modified.
modified_by
User (Integration Mappings)object
The user who last modified the integration mapping.
options
object
The schema for an integration mapping options object for Slack type.
partner_item
object
example: {"id":"C12378991223","slack_org_id":"E1234567","type":"channel"}Mapped item object for Slack.
{
  "id": "12345",
  "type": "integration_mapping",
  "box_item": {
    "id": "12345",
    "type": "folder",
    "etag": "1",
    "name": "Contracts",
    "sequence_id": "3"
  },
  "created_at": "2012-12-12T10:53:43-08:00",
  "created_by": {
    "id": "11446498",
    "type": "user",
    "login": "[email protected]",
    "name": "Aaron Levie"
  },
  "integration_type": "slack",
  "is_manually_created": true,
  "modified_at": "2012-12-12T10:53:43-08:00",
  "modified_by": {
    "id": "11446498",
    "type": "user",
    "login": "[email protected]",
    "name": "Aaron Levie"
  },
  "options": {
    "is_access_management_disabled": true
  },
  "partner_item": {
    "id": "C12378991223",
    "type": "channel",
    "slack_org_id": "E1234567"
  }
}