Skip to main content
GET
/
installations
List installations
curl --request GET \
  --url https://api-dev.narrative.io/installations \
  --header 'Authorization: Bearer <token>'
{
  "records": [
    {
      "id": 12345,
      "app_id": 67,
      "company_id": 345,
      "tier_id": "basic",
      "permissions": [
        {
          "access": "read",
          "resource": "datasets"
        }
      ],
      "installation_time": "2024-01-15T10:30:00"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

app_category
enum<string>[]

Filter installations by app category. Can be specified multiple times to filter by multiple categories.

Available options:
destination_connector

Response

Successfully retrieved list of installations.

A paginated list of installations.

records
object[]
required