Test the existenc of an account using its username or email address. A user role can optionally be provided to test for the existence of accounts of a certain type.
Security
SessionKey(Required scopes: publiccustomeradministrator)
- Mock serverhttps://docs.ticketingevents.com/_mock/openapi/lookups
- QA Serverhttps://qa.ticketingevents.com/v3/lookups
- Production Serverhttps://api.ticketingevents.com/v3/lookups
curl -i -X POST \
https://docs.ticketingevents.com/_mock/openapi/lookups \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"identification": "marvin.milk@usmc.gov",
"role": "host"
}'An account with the specified username or email address was found.
Response
{ "identification": "mothers.milk", "role": "host", "name": "Marvin Milk", "found": false }