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:

KeyTypeValueDescription
opstringdeleteRequired. Operation performed.
appstringEx:
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_idstringEx: 123451234512Required to delete an app + instance_id combo. ID of existing instance.
instance_namestringEx: "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",
}
]
}
Share this Doc

Delete an App Instance

Or copy link

In this topic ...