GET
/
v1
/
tenant
/
integrations
List inbound integrations in a tenant
curl --request GET \
  --url https://{region}.api.plerion.com/v1/tenant/integrations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "integrationId": "31497927-86af-4fba-afc6-c0cf2311a55b",
      "name": "AWS Production Account",
      "tenantId": "12345678-86af-4fba-afc6-c0cf12345678",
      "organizationId": "12345678-86af-4fba-afc6-c0cf87654321",
      "schedule": "59 6 * * *",
      "scanInterval": 24,
      "createdAt": "2023-02-04T06:07:09.092Z",
      "updatedAt": "2023-02-05T06:07:02.959Z",
      "provider": "AWS",
      "type": "AWSAccount",
      "detectionSettingId": "12345678-86af-4fba-afc6-c0cf87654321",
      "status": "Active",
      "riskScore": 8.19,
      "awsAccountId": "123456789012"
    }
  ],
  "meta": {
    "perPage": 1,
    "cursor": "ODcwMWUxOWYtYzg2OC00Mjc3LWE5ZTQtZWE5MWEzZTg1MGUz",
    "total": 42
  }
}

Authorizations

Authorization
string
header
required

Bearer API Key. For example, "Bearer {Tenant API Key}"

Headers

Authorization
string
required

Bearer API Key. For example, "Bearer {Tenant API Key}"

Content-Type
string

application/json

Query Parameters

perPage
number

Specify the batch size of the list. Used for pagination

Example:

2

cursor
string | null

Cursor to get next batch of result. Used for pagination

Example:

"dGhhbmt5b3UtZm9yLWRlY29kaW5nLWhhdmUtYS1nb29kLWRheTop"

includeTotal
boolean

Include the total count of available integrations

Example:

true

Response

200
application/json

Integrations list

The response is of type object.