Create an API integration token that can be used to authenticate requests instead of a session key. Integrations should be used where user interaction is not desirable/possible or for server to server applications.
Security
SessionKey(Required scopes: administrator)
- Mock serverhttps://docs.ticketingevents.com/_mock/openapi/integrations
- QA Serverhttps://qa.ticketingevents.com/v3/integrations
- Production Serverhttps://api.ticketingevents.com/v3/integrations
curl -i -X POST \
https://docs.ticketingevents.com/_mock/openapi/integrations \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"name": "TickeTing Live Events Calendar",
"access": "public"
}'Indicates that the API integration token was successfully created
Response
{ "name": "TickeTing Live Events Calendar", "access": "public", "key": "dcbb49fdd05a58ea59cb6c024b76fb68" }