List App Instances
This endpoint lists all your app instances.
GET https://<tenant-name>.goskope.com/api/v1/app_instances?token=<token>&op=list
Valid parameters are:
Key | Type | Value | Description |
---|---|---|---|
| string |
| Required. Operation performed. |
| 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. Filters by |
| string | Ex: | Optional. Filters by |
| string | Ex: | Optional. Filters by |
| string |
| Optional. Filters by |
| string |
| Optional. Filters by |
| string |
| Optional. Determines the order of policy scan results. Default is |
| integer | Positive integer less than 10000 | REST API responses can return up to 10000 items in a single response. You can use pagination to retrieve more results. Limit defines the page size. If limit is not provided or set to 0, all records will be shown. |
| integer | Positive integer | Skip over some of the items (useful for pagination in combination with |
GET 'https://<tenant-name>.goskope.com/api/v1/app_instances?token=xxx&op=list&sortby=app' \ --header 'Content-Type: application/json' \ --data-raw '{ "instances":[ { "app":"Azure", "instance_id": "123451234512", "instance_name":"New Instance-1", "tags":[ "Sanctioned" ] }, { "app":"AWS", "instance_id": "123451234513", "instance_name":"New Instance-2", "tags":[ "Unsanctioned" ] } ] }