Login
HomeDocsAPI ReferenceChat SDKsRelease Notes
HomeDocsAPI ReferenceChat SDKsRelease Notes
  • Introduction
    • Overview
    • Authentication
    • Versioning
    • Limits
    • Pagination
    • Errors
    • Webhooks
    • Migrate to V2
    • Changelog
  • Knowledge
    • Overview
    • Sources
    • Articles
    • Tags
  • End Users
    • Overview
    • Getting started
  • Integrations
    • Overview
    • Getting started
  • Conversations
    • Overview
    • Getting started
  • Data Compliance
    • Overview
  • Data Export
    • Overview
    • Getting started
    • Conversations
    • Messages
Login
LogoLogo
IntegrationsIntegrations

GET
https://example.ada.support/api/v2/platform-integrations/:id/installations/self
GET
/api/v2/platform-integrations/:id/installations/self
1import requests
2
3url = "https://example.ada.support/api/v2/platform-integrations/id/installations/self"
4
5headers = {"Authorization": "Bearer <token>"}
6
7response = requests.get(url, headers=headers)
8
9print(response.json())
Try it
1{
2 "id": "5df263b7db5a7e6ea03fae9b",
3 "platform_integration_id": "5df263b7db5a7e6ea03fae9b",
4 "created": "2020-09-20T00:00:00+00:00",
5 "updated": "2020-09-20T00:00:00+00:00",
6 "configuration": {},
7 "status": "complete"
8}
Was this page helpful?
Previous

Update installation status

Next
Built with
Get the platform integration installation associated with the access token. Use this endpoint to get the details of an installation, including the configuration form completed by the admin.
Get an installation

Authentication

AuthorizationBearer

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

Path parameters

idstringRequiredformat: "id"
The ID of the platform integration to fetch installation for

Response

Success
idstring or nullformat: "id"
The unique identifier for the integration installation
platform_integration_idstring or nullformat: "id"
The unique identifier for the integration
createdstring or nullformat: "date-time"
The date and time the installation was created
updatedstring or nullformat: "date-time"
The date and time the installation was last updated
configurationobject or null
The configuration settings for the integration
statusstring or null

The current state of the integration installation (incomplete, complete)

Errors