latestOpenAPI 3.1.02026-08-1014497184.0 KB
8b99dca11019
List all integrations
Lists all available and configured integrations for the project. Returns a summary of each integration including its type, status, and basic configuration information.
get/integrations
Query parameters
limitinteger
defines the maximum number of items to return per page (default: 50)
starting_afterstring
a cursor for use in pagination, points to the last ID in previous page
ending_beforestring
a cursor for use in pagination, points to the first ID in next page
Response
OK
Example response
{
"data": [
{
"config": {
"webhook_url": "https://example.com/webhook"
},
"id": "123",
"name": "<provider-name>"
}
],
"links": {
"first": "https://api.magicbell.com/v1/example",
"next": "https://api.magicbell.com/v1/example?page_next=abc",
"prev": null
}
}