Validate API endpoints
Use this check to confirm that your environment can reach the Data Sync API before you sync data.
In production, the Data Sync service calls these endpoints. System administrators still need to validate connectivity and credentials during setup.
On this page
Validate token generation in Postman
The token endpoint returns a JWT token that clients use to access secured Data Sync endpoints.
Endpoint: https://data.<your-site>.<your-domain>.com/data-sync/api/auth/token
Prerequisite: The STLT administrator must create values for clientid and clientsecret.
HTTP method: POST
Authorization type: NONE
- Open Postman and send a
POSTrequest to the token endpoint. - Add two request headers:
clientidclientsecret

- Select Send.
- Confirm that the response status is
200 OKand that a JWT token returns.

Validate service endpoints in Swagger
After token generation succeeds, validate the service endpoints in Swagger:
https://<host>/data-sync/swagger-ui/index.html
Use Postman for endpoint validation. You can also use Swagger to inspect and test endpoints.