← Partner API Reference The Partner API supports two authentication mechanisms. Header-based authentication is recommended for all programmatic integrations. JWT login is available for interactive sessions only.Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
All Partner API requests must include
X-Auth-ID and X-Auth-Token headers. The base URL is {BASE} which resolves to https://api.vobiz.ai/partner/v1.Overview
Every Partner API request requires your Partner credentials, obtained from the Vobiz Partner Console. There are two ways to authenticate:Header-Based Auth (Recommended)
PassX-Auth-ID and X-Auth-Token on every request. Best for server-to-server integrations, automation scripts, and production systems. Credentials never expire.
JWT Login (Interactive sessions)
Exchange email + password for a temporary JWT access token. Expires after a set period. Suitable for dashboard UIs or short-lived sessions.Header-Based Authentication
Include the following headers on every request. These credentials are permanent and do not expire - rotate them manually if compromised.X-Auth-ID(required) - Your permanent Partner ID. Retrieved from the Partner Console under Settings → API Keys. It does not change unless you request a new one.X-Auth-Token(required) - Your secret API token. Rotate this immediately if you suspect it has been compromised. Issue a new token from the Partner Console.Accept(required on GET/POST) - Tells the API to return JSON responses.Content-Type(required on POST/PUT with body) - Set toapplication/jsonwhen sending a request body.
Partner Login (JWT)
Exchanges your partner email and password for a temporary JWT access token. The Postman collection automatically captures the token intopartner_access_token after a successful login. Use this for interactive sessions; use X-Auth headers for automation.
Request
| Field | Type | Required | Description |
|---|---|---|---|
email | string | Required | Your partner account email address |
password | string | Required | Your partner account password |