Get All Teammates
All API requests should contain authorization headers.
Request
GET /Teammates
Query Parameters
Name
Type
Required
Comments
group
integer
no
Users group id you want to retrieve. If not specified, all users within the community will be returned
Response
{
"data": [
{
"name": "Robert Baker",
"email": "[email protected]",
"role": "admin"
},
{
"name": "William Shakespeare",
"email": "[email protected]",
"role": "read_only_user"
}
],
"errorCode": -1,
"errorText": null
}
Data
field will contain an array of Teammate objects.
Last updated
Was this helpful?