List integrations
GET/accounts/{account_id}/one/integrations
Returns a paginated list of integrations for the account.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
List integrations
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/one/integrations \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"errors": [],
"messages": [],
"result": [
{
"application": {
"category": "Productivity",
"display_name": "Google Workspace",
"logo": "https://onprem.cloudflare.com/static/google_workspace.png"
},
"created": "2025-01-15T10:00:00Z",
"id": "019d2e6a-d995-7185-afbd-4feead9e42ec",
"is_paused": false,
"name": "My Google Workspace",
"status": "Healthy",
"updated": "2025-04-10T08:30:00Z"
}
],
"result_info": {
"count": 1,
"next": null,
"page": 1,
"per_page": 10,
"previous": null,
"total_count": 1
},
"success": true
}Returns Examples
{
"errors": [],
"messages": [],
"result": [
{
"application": {
"category": "Productivity",
"display_name": "Google Workspace",
"logo": "https://onprem.cloudflare.com/static/google_workspace.png"
},
"created": "2025-01-15T10:00:00Z",
"id": "019d2e6a-d995-7185-afbd-4feead9e42ec",
"is_paused": false,
"name": "My Google Workspace",
"status": "Healthy",
"updated": "2025-04-10T08:30:00Z"
}
],
"result_info": {
"count": 1,
"next": null,
"page": 1,
"per_page": 10,
"previous": null,
"total_count": 1
},
"success": true
}