Delete an App Instance
Delete an App Instance
This endpoint deletes an existing app instance. Size limit is 500 app instances max per request with the rate limit of one request every 10 minutes.
Request Endpoint
POST https://<tenant-URL>/api/v1/app_instances?token=<token>&op=delete
Valid parameters are:
Key | Type | Value | Description |
---|---|---|---|
op | string | delete | Required. Operation performed. |
app | string | Ex:Amazon Web Services | Amazon S3 | Amazon EC2 | Amazon DynamoDB | Microsoft Azure | Microsoft Office 365 Sharepoint Sites | Microsoft Office 365 OneDrive for Business | Box | Slack | Required to delete an app + instance_id combo. Name of existing application. |
instance_id | string | Ex: 123451234512 | Required to delete an app + instance_id combo. ID of existing instance. |
instance_name | string | Ex: "MYAWS_GOSKOPE" | Required to delete an instance_name . Name of existing instance. |
Example Delete App Instance Request
POST 'https://<tenant-URL>/api/v1/app_instances?token=<token>&op=delete' --header 'Content-Type: application/json' --data-raw '{ "instances":[ { "instance_id": "123451234512", "app":"Azure", }, { "instance_name":"New Instance-4", "app":"Amazon S3", } ] }'