Get All Teammates

All API requests should contain authorization headers.

Request

GET /Teammates

Query Parameters

NameTypeRequiredComments

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": "RobertBaker@gmail.com",
            "role": "admin"
        },
        {
            "name": "William Shakespeare",
            "email": "williamshakespeare@domain.com",
            "role": "read_only_user"
        }
    ],
    "errorCode": -1,
    "errorText": null
}

Data field will contain an array of Teammate objects.

Last updated