- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Get workspace members
GET
https://api.weeek.net/public/v1/ws/members
Workspace
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Responses
🟢200Successful response
application/json
Body
success
booleanÂ
optional
members
array[object (User) {8}]Â
optional
id
stringÂ
optional
Example:
3e265f8a-5c6c-4169-a2b1-6182f10b712b
email
stringÂ
optional
Example:
info@weeek.net
logo
string  | nullÂ
optional
Example:
https://storage.weeek.net/logos/MeUZRwz23XfyLAjG_resized_236.png
lastName
string  | nullÂ
optional
Example:
Hendricks
firstName
string  | nullÂ
optional
Example:
Richard
middleName
string  | nullÂ
optional
position
string  | nullÂ
optional
Example:
Developer
timeZone
stringÂ
optional
Example:
Europe/Moscow
Example
{
"success": true,
"members": [
{
"id": "3e265f8a-5c6c-4169-a2b1-6182f10b712b",
"email": "info@weeek.net",
"logo": "https://storage.weeek.net/logos/MeUZRwz23XfyLAjG_resized_236.png",
"lastName": "Hendricks",
"firstName": "Richard",
"middleName": "string",
"position": "Developer",
"timeZone": "Europe/Moscow"
}
]
}
Modified at 2024-01-23 10:07:01