List Available Integrations
List all integrations available for use with access profiles
Endpoint
GET /api/private/lifecycle_management/access_profiles:available_integrations
Description
Retrieves a list of all integrations that are available for use with access profiles in your organization. This endpoint shows which systems can be used as targets for access management operations within access profiles.
Use this endpoint to:
Discover which integration types are supported in your environment
Verify that required integrations are available before creating access profiles
Plan access profile configurations across different systems
API Reference
get
Authorizations
Responses
200
OK
application/json
default
Default error response
application/json
get
GET /api/private/lifecycle_management/access_profiles:available_integrations HTTP/1.1
Host: your-tenant.cookiecloud.ai
Authorization: Bearer JWT
Accept: */*
{
"integrations": [
"text"
]
}
Request Examples
curl -X GET "$BASE_URL/api/private/lifecycle_management/access_profiles:available_integrations" \
-H "authorization: Bearer $VEZA_TOKEN"
Response Examples
{
"integrations": [
"ACTIVE_DIRECTORY",
"AWS",
"AZURE",
"GOOGLE",
"OKTA",
"SALESFORCE",
"WORKDAY"
]
}
Last updated
Was this helpful?