Create a new TickeTing user account. Most user data is optional for account creation, so there is flexibility in the stage of the onboarding process at which data is captured.
Security
SessionKey(Required scopes: publiccustomeradministrator)
- Mock serverhttps://docs.ticketingevents.com/_mock/openapi/accounts
- QA Serverhttps://qa.ticketingevents.com/v3/accounts
- Production Serverhttps://api.ticketingevents.com/v3/accounts
curl -i -X POST \
https://docs.ticketingevents.com/_mock/openapi/accounts \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"username": "mothers.milk",
"password": "WuT4NGcl4n",
"email": "marvin.milk@usmc.gov",
"firstName": "Marvin",
"lastName": "Milk",
"title": "Mr",
"dateOfBirth": "1974-09-14",
"phone": "+1 (268) 555 0123",
"country": "Antigua and Barbuda",
"firstAddressLine": "Jennings New Extension",
"secondAddressLine": "",
"city": "Jennings",
"state": "Saint Mary'\''s"
}'The new account was successfully created.
Response
{ "self": "/accounts/MO-6A39EE8D", "number": "MO-6A39EE8D", "username": "mothers.milk", "email": "marvin.milk@usmc.gov", "role": "customer", "verified": false, "activated": true, "firstName": "Marvin", "lastName": "Milk", "title": "Mr", "dateOfBirth": "1974-09-14", "phone": "+1 (268) 555 0123", "country": "Antigua and Barbuda", "firstAddressLine": "Jennings New Extension", "secondAddressLine": "", "city": "Jennings", "state": "Saint Mary's", "preferences": "/accounts/MO-6A39EE8D/preferences" }