v50

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-07-068428533.0 MB
Integration Instance Auth Credentials

Get Integration Instance Auth Credential

Fetches the auth credential scoped to the given integration instance.

get/v1/integration-instances/{integrationInstanceId}/auth-credential

Response

A response containing an integration instance auth credential.

idstring uuid required
taintedboolean required

Indicates that the credential is no longer valid and must be replaced with a new valid credential.

expires_atstring date-time nullable required

Timestamp denoting when the when the credential will expire in RFC-3339 format with a "T" character separating date from time within the field value. When expired, the credential must be replaced with a new valid credential to re-enable full functionality for the given integration instance.

A null value indicates no known expiration time.

created_atstring date-time required

An ISO-8601 timestamp representation of entity creation date.

type'multi_key_auth' required

Example response

{
  "id": "4f535923-ec24-456c-b4e5-e67f65c8c208",
  "integration_instance": {
    "id": "772b9caf-ddbc-4f4f-8aa4-8dfbbe420351",
    "name": "aws-lambda-prod",
    "display_name": "AWS (prod)"
  },
  "missing_permissions": [
    {
      "scopes": [
        "incident:read"
      ]
    }
  ],
  "expires_at": "2025-04-01T07:20:50Z",
  "created_at": "2022-11-04T20:10:06.927Z"
}