List all users.
GET/api/users
Retrieve the list of users created by a partner.
Request
Query Parameters
Default value: 0
Page number
Default value: 10
Number of items per page
Possible values: [firstName
, lastName
, email
, phone
, dateRegistered
]
Default value: dateRegistered
Sort by field
Possible values: [asc
, desc
]
Default value: desc
Sort by order
Possible values: [firstName
, lastName
, email
, phone
, licensePlate
]
Search by field
Search by value
Filter users whose registration date is greater or than equal to the date passed in. (The date should be in the ISO8601 UTC format YYY-MM-DDThh:mm:ss.SSSZ)
Filter users whose registration date is less or than equal to the date passed in. (The date should be in the ISO8601 UTC format YYY-MM-DDThh:mm:ss.SSSZ)
Header Parameters
Partner Id
Client Id
Client Secret
Responses
- 200
- 401
- 500
List of user objects matching the query.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Unique Id for the user
User's first name
User's last name
User's email address
User's cell phone number
address
object
Address
Street Address Line 1
Street Address Line 2
City
2 Letter State Code
2 Letter Country Code
Zip
Possible values: [None
, Accepted
, Declined
]
User's answer to terms of service for sharing data with Partner. (Only valid for certain partners)
A code generated for the user to share with Partner. (Only valid for certain partners)
Time at which user was registered on the system
Last updated timestamp
[
{
"id": "string",
"firstName": "string",
"lastName": "string",
"email": "string",
"phone": "string",
"address": {
"addressLine1": "string",
"addressLine2": "string",
"city": "string",
"state": "string",
"country": "string",
"zip": "string"
},
"tosAnswer": "None",
"partnerCode": "string",
"dateRegistered": "string",
"updated": "string"
}
]
Authorization error e.g. due to an invalid or missing API keys.
Internal error. Possible error codes
-
INTERNAL_SERVER_ERROR
- application/json
- Schema
- Example (from schema)
Schema
Error code
A verbose error message
{
"error_code": "string",
"error_message": "string"
}