Box Developerドキュメント
最新バージョン

Slack統合マッピングを削除

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

このエンドポイントはバージョン2024.0です。引き続き使用するために 変更は必要ありません。詳細については、 **Box APIのバージョン管理**を参照してください。

Slack統合マッピングを削除します。

このエンドポイントを使用するには、管理者または共同管理者の役割が必要です。

リクエスト

bearer [ACCESS_TOKEN]
application/json

パスパラメータ

stringパス内必須
11235432

統合マッピングのID。

レスポンス

none

レスポンスの本文は空です。

統合マッピングが見つからなかった場合、not_foundエラーを返します。

予期しないクライアントエラー。

delete
Slack統合マッピングを削除
このドキュメント内で一部のAPIを試せるようになりました。
ログイン

リクエストの例

Box SDKのバージョン戦略の詳細については、 **こちら**を確認してください。


cURL
curl -X -L DELETE "https://api.box.com/2.0/integration_mappings/slack/512521" \
     -H "authorization: Bearer <ACCESS_TOKEN>"  \
     -d ''
Node/TypeScript v10
await userClient.integrationMappings.deleteSlackIntegrationMappingById(
  slackIntegrationMapping.id,
);
Python v10
user_client.integration_mappings.delete_slack_integration_mapping_by_id(
    slack_integration_mapping.id
)
.NET v10
await userClient.IntegrationMappings.DeleteSlackIntegrationMappingByIdAsync(integrationMappingId: slackIntegrationMapping.Id);
Swift v10
try await userClient.integrationMappings.deleteSlackIntegrationMappingById(integrationMappingId: slackIntegrationMapping.id)
Java v10
userClient.getIntegrationMappings().deleteSlackIntegrationMappingById(slackIntegrationMapping.getId())
Node v3
await client.integrationMappings.deleteSlackIntegrationMappingById({
	integration_mapping_id: 123456
});