-
Print
-
DarkLight
GET /teams
Gets all the users
Header
Parameter | Type | Description |
---|---|---|
api_token | string | You can get the REST API from Settings > Advanced > API tokens. |
Query Parameters
Parameter | Required | Type | Description |
---|---|---|---|
skip | No | int | Used for pagination. Skips the mentioned number of records. The default value is 0. |
take | No | int | Used for pagination. Retrieves the mentioned number of records. The default value is 20. |
Sample Response
{
"result": [
{
"user_id": "5ad03d2b6d59890e8635a596",
"first_name": "Danny",
"last_name": "Brown",
"email": "kuzhali.maheswaran@biztalk360.co.uk",
"profile_logo_url": "https://s.gravatar.com/avatar/1b7c898ca4afb6c3ca5b7ccf8dddc5a9.png",
"portal_role": "Owner",
"last_login_at": "2021-08-20T15:16:54.475Z"
}
],
"extension_data": null,
"context": null,
"success": true,
"errors": [],
"warnings": [],
"information": []
}
Response Data
Parameter | Type | Description |
---|---|---|
user_id | string | The ID of the user |
first_name | string | First name of the user |
last_name | string | Last name of the user |
email_id | string | Email address of the user |
profile_logo_url | string | Profile image URL of the user |
last_login_at | DateTime | Last login date of the user |
portal_role | string | The name of the portal role |
Was this article helpful?