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"
}
]
}Returns all installations for the authenticated company.
Optionally filter by app category using the app_category query parameter.
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"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter installations by app category. Can be specified multiple times to filter by multiple categories.
destination_connector Successfully retrieved list of installations.
A paginated list of installations.
Show child attributes
Was this page helpful?