- API Keys
- Response Format
- Whatsapp
- Platform
- Process
- Task
- User
- Photo
- Background Job
- Fetch ConfigGET
Fetch User API
GET
/v1/ext/user/{userId}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
userId
string
required
Example:
9763caa1-cef3-497f-b3b2-f551456b2831
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/ext/user/9763caa1-cef3-497f-b3b2-f551456b2831'
Responses
🟢200Success
application/json
Body
_data
object
required
phones
array[string]
required
emails
array [object {8}]
required
id
string
required
createdAt
integer
required
updatedAt
integer
required
username
string
required
firstName
string
required
lastName
string
required
middleName
string
required
displayName
string
required
gender
string
required
dob
integer
required
bio
string
required
profileImageUrl
string
required
coverImageUrl
string
required
timezone
string
required
data
null
required
onboardingData
null
required
isActive
boolean
required
isDeleted
boolean
required
deletedAt
null
required
availabilityStatus
string
required
team
string
required
role
string
required
primaryEmail
object
required
primaryPhone
null
required
profile
null
required
reportees
array[string]
required
Example
{
"_data": {
"phones": [
"string"
],
"emails": [
{
"id": "string",
"createdAt": 0,
"updatedAt": 0,
"email": "string",
"normalizedEmail": "string",
"type": "string",
"isVerified": true,
"user": "string"
}
],
"id": "string",
"createdAt": 0,
"updatedAt": 0,
"username": "string",
"firstName": "string",
"lastName": "string",
"middleName": "string",
"displayName": "string",
"gender": "string",
"dob": 0,
"bio": "string",
"profileImageUrl": "string",
"coverImageUrl": "string",
"timezone": "string",
"data": null,
"onboardingData": null,
"isActive": true,
"isDeleted": true,
"deletedAt": null,
"availabilityStatus": "string",
"team": "string",
"role": "string",
"primaryEmail": {
"id": "string",
"createdAt": 0,
"updatedAt": 0,
"email": "string",
"normalizedEmail": "string",
"type": "string",
"isVerified": true,
"user": "string"
},
"primaryPhone": null,
"profile": null,
"reportees": [
"string"
]
}
}
Modified at 2024-11-11 10:58:10