Delete Slack integration mapping

delete
https://api.box.com/2.0
/integration_mappings/slack/:integration_mapping_id

Deletes a Slack integration mapping.

You need Admin or Co-Admin role to use this endpoint.

Request

bearer [ACCESS_TOKEN]
application/json

Path Parameters

stringin pathrequired
11235432

An ID of an integration mapping

Response

none

Empty body in response

application/jsonClient error

Returns a not_found error if the integration mapping could not be found.

application/jsonClient error

An unexpected client error.

delete
Delete Slack integration mapping
You can now try out some of our APIs live, right here in the documentation.
Log in

Request Example

cURL
curl -X -L DELETE "https://api.box.com/2.0/integration_mappings/slack/512521" \
     -H "authorization: Bearer <ACCESS_TOKEN>"  \
     -d ''
Node
await client.integrationMappings.deleteSlackIntegrationMappingById({
	integration_mapping_id: 123456
});