All pages
Powered by GitBook
1 of 1

Loading...

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

Request Examples

Response Examples

curl -X GET "$BASE_URL/api/private/lifecycle_management/access_profiles:available_integrations" \
  -H "authorization: Bearer $VEZA_TOKEN"
{
  "integrations": [
    "ACTIVE_DIRECTORY",
    "AWS",
    "AZURE",
    "GOOGLE",
    "OKTA",
    "SALESFORCE",
    "WORKDAY"
  ]
}

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:

get
Authorizations
Responses
200

OK

application/json
default

Default error response

application/json
get
{
  "integrations": [
    "text"
  ]
}
GET /api/private/lifecycle_management/access_profiles:available_integrations HTTP/1.1
Host: your-tenant.cookiecloud.ai
Authorization: Bearer JWT
Accept: */*
curl -X GET "$BASE_URL/api/preview/keys" \
  -H "authorization: Bearer $VEZA_TOKEN"