curl --request GET \
--url https://api-dev.narrative.io/installations/{installation_id} \
--header 'Authorization: Bearer <token>'{
"id": 12345,
"app_id": 67,
"company_id": 345,
"tier_id": "basic",
"permissions": [
{
"access": "read",
"resource": "datasets"
},
{
"access": "write",
"resource": "destinations"
}
],
"installation_time": "2024-01-15T10:30:00"
}Returns a single installation by its ID.
The installation must belong to the authenticated company.
curl --request GET \
--url https://api-dev.narrative.io/installations/{installation_id} \
--header 'Authorization: Bearer <token>'{
"id": 12345,
"app_id": 67,
"company_id": 345,
"tier_id": "basic",
"permissions": [
{
"access": "read",
"resource": "datasets"
},
{
"access": "write",
"resource": "destinations"
}
],
"installation_time": "2024-01-15T10:30:00"
}Documentation Index
Fetch the complete documentation index at: https://docs.narrative.io/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier for the installation.
Successfully retrieved the installation.
An installation represents an app that has been installed for a company.
Unique identifier for the installation.
12345
The ID of the installed app.
67
The ID of the company that installed the app.
345
The tier selected during installation.
"basic"
The permissions granted to this installation.
Show child attributes
The timestamp when the installation occurred.
"2024-01-15T10:30:00"
Was this page helpful?