- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Get profile
GET
https://api.weeek.net/public/v1/user/me
User
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
user
object (CurrentUser)Â
optional
id
stringÂ
optional
>= 1 characters
email
stringÂ
optional
>= 1 characters
logoLink
stringÂ
optional
>= 1 characters
lastName
optional
firstName
optional
middleName
optional
about
optional
position
optional
language
stringÂ
optional
>= 1 characters
birthDate
optional
country
optional
timeZone
stringÂ
optional
>= 1 characters
phoneNumber
optional
Example
{
"success": true,
"user": {
"id": "string",
"email": "string",
"logoLink": "string",
"lastName": null,
"firstName": null,
"middleName": null,
"about": null,
"position": null,
"language": "string",
"birthDate": null,
"country": null,
"timeZone": "string",
"phoneNumber": null
}
}
Modified at 2024-01-23 10:07:01