Documentation API pour intégration partenaires
Complete API reference with all endpoints, request/response schemas, and examples.
Interactive API explorer to test endpoints directly from your browser.
Download the complete OpenAPI specification in JSON format for tooling integration.
public_key and secret_keyX-Api-Key, X-Timestamp, X-SignatureAll partner API endpoints require HMAC-SHA256 authentication:
X-Api-Key - Your public API keyX-Timestamp - Current Unix timestampX-Signature - HMAC-SHA256 signature (v1=hex)Idempotency-Key - UUID for POST requestsstring_to_sign = timestamp + "\n" + method + "\n" + path + "\n" + body
signature = HMAC_SHA256(secret_key, string_to_sign)
X-Signature = "v1=" + hex(signature)
https://sandbox.api.dropcolis.ca/v1https://api.dropcolis.ca/v1See the ReDoc documentation for complete code examples in multiple languages including: