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/api/v1/partner.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.Two credential scopes - partner vs customer
The Partner API and the Customer (voice) API use the same header scheme (X-Auth-ID + X-Auth-Token) but different credentials. Sending the wrong pair against the wrong base path returns 401/403.
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.