curl --request POST \
--url https://api.wirespeed.com/team/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"size": 123,
"page": 123,
"filter": "<string>",
"search": "<string>",
"orderBy": "<string>",
"orderDir": "asc"
}'
{
"data": [
{
"id": "<string>",
"intercomId": "<string>",
"createdAt": "<string>",
"fullName": "<string>",
"email": "<string>",
"locked": true,
"superAdmin": true,
"activeTeamId": "<string>",
"parentTeamId": "<string>",
"completedOnboarding": true,
"firstName": "<string>",
"lastName": "<string>",
"teamId": "<string>",
"role": "ADMIN"
}
],
"totalCount": 123
}
curl --request POST \
--url https://api.wirespeed.com/team/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"size": 123,
"page": 123,
"filter": "<string>",
"search": "<string>",
"orderBy": "<string>",
"orderDir": "asc"
}'
{
"data": [
{
"id": "<string>",
"intercomId": "<string>",
"createdAt": "<string>",
"fullName": "<string>",
"email": "<string>",
"locked": true,
"superAdmin": true,
"activeTeamId": "<string>",
"parentTeamId": "<string>",
"completedOnboarding": true,
"firstName": "<string>",
"lastName": "<string>",
"teamId": "<string>",
"role": "ADMIN"
}
],
"totalCount": 123
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.