curl --request GET \
--url https://api.example.com/api/integrations \
--header 'X-API-Key: <x-api-key>' \
--header 'X-Organization-Id: <x-organization-id>'{
"success": true,
"data": [
{
"integration_id": "intg_a1b2c3d4e5f6",
"name": "Twilio Production",
"provider": "twilio",
"category": "telephony",
"status": "active",
"created_at": "2024-01-15T10:30:00Z"
}
],
"pagination": {
"next_cursor": null,
"has_more": false,
"page_size": 1,
"total_count": 1
}
}
curl --request GET \
--url https://api.example.com/api/integrations \
--header 'X-API-Key: <x-api-key>' \
--header 'X-Organization-Id: <x-organization-id>'{
"success": true,
"data": [
{
"integration_id": "intg_a1b2c3d4e5f6",
"name": "Twilio Production",
"provider": "twilio",
"category": "telephony",
"status": "active",
"created_at": "2024-01-15T10:30:00Z"
}
],
"pagination": {
"next_cursor": null,
"has_more": false,
"page_size": 1,
"total_count": 1
}
}
integrations:read (all roles)Show Integration Summary
{
"success": true,
"data": [
{
"integration_id": "intg_a1b2c3d4e5f6",
"name": "Twilio Production",
"provider": "twilio",
"category": "telephony",
"status": "active",
"created_at": "2024-01-15T10:30:00Z"
}
],
"pagination": {
"next_cursor": null,
"has_more": false,
"page_size": 1,
"total_count": 1
}
}