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

Authentication Required

This endpoint requires a valid Veza API key for authentication.

See Authentication for more about creating and managing API keys.

All requests must include the API key as a Bearer token in the Authorization header.

Example:

curl -X GET "$BASE_URL/api/preview/keys" \
  -H "authorization: Bearer $VEZA_TOKEN"

API Reference

get
Authorizations
Responses
200

OK

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?