Skip to main content

API URLs

Voyado's APIs are accessed through a single base URL, made up of the client's name followed by voyado.com.

For the production environment the base URL form is:

https://[client].voyado.com

For the test environment (Staging) the base URL form will be:

https://[client].staging.voyado.com

For example, a client named ABC123 would have the following base URL in the production environment:

https://abc123.staging.voyado.com

Caution

Use HTTPS for all interactions with the Voyado API

In this documentation

In this documentation, the part of the URL that comes before /api will be left out and the HTTP method will be added before it. For example, instead of an instruction to make a GET request to:

https://abc123.staging.voyado.com/api/v2/contacts/count

You will just see this:

GET /api/v2/contacts/count

Or this:

POST /api/v2/contacts/{contactId}

Refer back to this page if it's unclear what to put before /api to make a full URL.