Skip to main content

Authentication

POST

/api/v1/auth-service/auth/login

This endpoint is used for login. It authenticates a partner using a username and password, and returns an access_token (Bearer) that must be included in the Authorization header of all subsequent Flight API requests.

curl --location 'https://api.etscore.com/api/v1/auth-service/auth/login' \
--header 'Accept-Language: en-US' \
--header 'Content-Type: application/json' \
--data '{
"username": "etscore.royalapi",
"password": "*****"
}'