All API requests must be cryptographically signed to ensure integrity and authenticity.Request signing prevents tampering and guarantees that the request was generated by an authorized client.
Authenticate using your API Key and API Secret.POST /auth/tokenExample:curl -X POST {authentication_base_url}/auth/token -H "Content-Type: application/json" -d '{ "token": "zed_live_xxxxx:475c593cd9f373xxxxx", "audience": "ZEDTECH_PAYMENTS" }'Response:{ "access_token": "eyJhbGciOiJSUzI1NiIs...", "expires_in": 3600 }The access token contains a signing_key which will be used to sign requests.
invalid_signature The computed signature does not match the server.missing_signature The request was sent without the required Signature or Timestamp headers.