Skip to content

List user accounts

Request

Retrieve a list of TickeTing user accounts.

Security
SessionKey(Required scopes: administrator)
Query
recordsinteger

The number of records per page that should be returned

Default:25
pageinteger

The number of the results page to return

Default:1
numberstring

If set, only returns the account with the specified number

emailstring

If set, only returns the account with the specified email address

usernamestring

If set, only returns the account with the specified username

curl -i -X GET \
  'https://docs.ticketingevents.com/_mock/openapi/accounts?records=25&page=1&number=string&email=string&username=string' \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

The list of user accounts was successfully retrieved.

Bodyapplication/json
totalinteger

The total number of results available

pageinteger

The number of the results page returned

recordsinteger

The maximum number of results returned per page

entriesArray of objects(response-3)
Response
{ "page": 1, "records": 25, "entries": [ {} ] }