Integrations
List All IntegrationConfigs
List all integration configurations.
This endpoint retrieves a list of all integration configurations for the specified Organization. The list can be paginated for easier management.
get/organizations/{orgId}/integrationconfigs
Path parameters
orgIdstring required
The unique identifier (UUID) for the organization. This specifies the organization within which the webhook destination is created.
Query parameters
pageSizeinteger
Specifies the maximum number of integration configurations to retrieve per page.
nextTokenstring
The nextToken for multi-page retrievals. It is used to fetch the next page of integration configurations in a paginated list.
destinationIdstring
optional filter for a specific destination
Response
Return the IntegrationConfigs
Example response
{
"data": [
{
"entityType": "Bill",
"entityId": "00000000-0000-0000-0000-000000000000",
"destination": "Stripe",
"destinationId": "00000000-0000-0000-0000-000000000000",
"integrationCredentialsId": "00000000-0000-0000-0000-000000000000",
"name": "My Integration"
}
]
}