Skip to main content
GET
/
integration
/
{integrationId}
Retrieve a specific integration by ID
curl --request GET \
  --url https://api.draftt.io/v1/integration/{integrationId} \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 1,
      "name": "My AWS Integration",
      "type": "aws",
      "status": "Healthy",
      "details": {
        "externalId": "abc123",
        "roleArn": "arn:aws:iam::123456789012:role/my-role",
        "accountId": "123456789012"
      },
      "createdAt": "2024-12-01T12:00:00.000Z",
      "updatedAt": "2024-12-23T12:00:00.000Z"
    }
  ],
  "nextToken": null
}

Authorizations

Authorization
string
header
required

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

Path Parameters

integrationId
integer
required

Response

Success

items
object[]
required
Required array length: 1 element
nextToken
enum<string>
Available options:
null