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 GET \
--url https://{instance}.omniapp.co/api/v1/ai/branding \
--header 'Authorization: Bearer <token>'{
"displayName": "DataBot",
"logoUrl": "https://example.com/custom-logo.png",
"headline": "Welcome to DataBot",
"body": "Your intelligent data assistant",
"promptPlaceholder": "What would you like to know?"
}Return the organization’s AI Agent’s branding configuration, including display name, custom logo URL, and copy for AI Agent landing surfaces. Falls back to Omni’s default values when custom branding hasn’t been configured.
curl --request GET \
--url https://{instance}.omniapp.co/api/v1/ai/branding \
--header 'Authorization: Bearer <token>'{
"displayName": "DataBot",
"logoUrl": "https://example.com/custom-logo.png",
"headline": "Welcome to DataBot",
"body": "Your intelligent data assistant",
"promptPlaceholder": "What would you like to know?"
}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
Successfully retrieved AI Agent branding
The display name for the AI Agent. Defaults to Omni Agent if branding hasn't been configured.
"Omni AI"
Absolute URL to the custom logo image for the AI Agent. Returns null if no custom logo is configured.
"https://example.com/custom-logo.png"
Headline text displayed on AI Agent landing surfaces
"Welcome to Omni AI"
Body copy displayed on AI Agent landing surfaces
"Ask questions about your data in natural language"
Placeholder text for the AI prompt input field
"Ask a question about your data..."
Was this page helpful?