Before you begin integration:
- Contact your Echo Account Team to obtain your
client_idandclient_secret. - Ensure your system can make HTTPS requests using
application/x-www-form-urlencodedrequest bodies and process JSON responses. - Confirm your application can cache and manage Bearer tokens dynamically across their full lifetime.
- Review the Full specification for complete endpoint and schema details.
| Method | Endpoint | Purpose |
|---|---|---|
POST | /token | Exchange credentials for an OAuth 2.0 Bearer token |
When your application calls POST /token:
- Submission — Your
client_id,client_secret,grant_type, andscopeare sent as form data. - Validation — The EchoSync Authorizer verifies your application identity and credentials.
- Response — A JSON payload is returned containing the
access_token,expires_in(seconds),token_type, and approvedscope.