Versioning
The SalesKick API is versioned in the URL path. The current release uses the v1 segment immediately after the API host (for example https://api.example.com/v1/...).
Example
cURLGET
Behaviour
| Scenario | Result |
|---|---|
Request uses /v1/... on versioned routes | Handled by version 1 |
Request omits /v1/ on routes that require a version | 404 Not Found at the gateway |
Unsupported path version (for example /v99/...) | 404 Not Found |