URLs
Authentication API endpoints
Demo
URL: https://auth.non-prod.korusticket.com
Example:
$ curl --request POST \
--url https://auth.non-prod.korusticket.com/realms/korusticket-demo/protocol/openid-connect/token \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data client_id=YOUR_APP \
--data client_secret=YOUR_APP_SECRET \
--data grant_type=client_credentials
Production
URL: https://auth.korusticket.com
Example:
$ curl --request POST \
--url https://auth.korusticket.com/realms/korusticket/protocol/openid-connect/token \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data client_id=YOUR_APP \
--data client_secret=YOUR_APP_SECRET \
--data grant_type=client_credentials
Korus Ticket API endpoints
Demo
URL: https://api.demo.korusticket.com
Example: https://api.demo.korusticket.com/v1/ticketing/catalogs
Production
URL: https://api.korusticket.com
Example: https://api.korusticket.com/v1/ticketing/catalogs