Skip to main content
GET
/
installations
/
{installation_id}
Get an installation
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.

Authorizations

Authorization
string
header
required

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

Path Parameters

installation_id
integer<int64>
required

The unique identifier for the installation.

Response

Successfully retrieved the installation.

An installation represents an app that has been installed for a company.

id
integer<int64>
required

Unique identifier for the installation.

Example:

12345

app_id
integer<int64>
required

The ID of the installed app.

Example:

67

company_id
integer<int64>
required

The ID of the company that installed the app.

Example:

345

tier_id
string
required

The tier selected during installation.

Example:

"basic"

permissions
object[]
required

The permissions granted to this installation.

installation_time
string<date-time>
required

The timestamp when the installation occurred.

Example:

"2024-01-15T10:30:00"