List

  • GET
  • /workspaces
  • /:workspace
  • /integrations

Returns a list of all integrations of the authorized user.

Request

REQUIRED SCOPES
INTEGRATION_INFO
URL PARAMETERS
workspacerequiredstring
The workspace name.

Last modified on Jan 19, 2026

Request example

CURL
curl -X GET "https://api.buddy.works/workspaces/:workspace/integrations" \ -H "Authorization: Bearer <YOUR-TOKEN>" \ -H "Content-Type: application/json" \

Response

EXAMPLE RESPONSE
{ "url": "https://api.buddy.works/workspaces/buddy/integrations", "integrations": [ { "url": "https://api.buddy.works/workspaces/buddy/integrations/5fff3231277e1449d8eb3e6a", "html_url": "https://app.buddy.works/buddy/workspace/integrations", "identifier": "my_aws_integration", "name": "Buddy AWS integration", "type": "AMAZON", "scope": "WORKSPACE", "all_pipelines_allowed": true, "permissions": { "admins": "MANAGE", "others": "USE_ONLY", "users": [], "groups": [] }, "allowed_pipelines": [] } ] }