Need help? Get answers from the docs with Omni's in-app AI! Log in to your Omni instance and open the Omni Agent in the sidebar.
curl --request PUT \
--url https://{instance}.omniapp.co/api/v1/connection-environments/{connectionEnvironmentId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userAttributeValues": "<string>"
}
'{
"success": true
}Associates user attribute values with a specific connection environment, which will determine when it is used.
curl --request PUT \
--url https://{instance}.omniapp.co/api/v1/connection-environments/{connectionEnvironmentId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userAttributeValues": "<string>"
}
'{
"success": true
}Documentation Index
Fetch the complete documentation index at: https://docs.omni.co/llms.txt
Use this file to discover all available pages before exploring further.
Can be either an Organization API Key or Personal Access Token (PAT).
Include in the Authorization header as: Bearer YOUR_TOKEN
The ID of the connection environment to update
A comma-separated list of user attribute values to associate with the connection environment. For example: "dev,staging"
Note: User attribute values must be unique across all environments for a base connection.
Connection environment updated successfully
true
Was this page helpful?