Skip to main content
GET
/
io.pocketenv.sandbox.getIntegrations
Get the integrations for a sandbox.
curl --request GET \
  --url https://api.pocketenv.io/xrpc/io.pocketenv.sandbox.getIntegrations \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "webhookUrl": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

id
string
required

The sandbox ID.

Response

OK

id
string

Unique identifier of the integration.

name
string

The name of the integration, e.g. 'GitHub', 'Slack', 'Trello', etc.

webhookUrl
string<uri>

The webhook URL of the integration.

createdAt
string<date-time>

The timestamp when the integration was created.

updatedAt
string<date-time>

The timestamp when the integration was last updated.