ChakraHQ APIs
HomeSign In
HomeSign In
  1. User
  • API Keys
  • Response Format
  • Whatsapp
    • Inbound Events Webhook
    • Pass Through APIs
      • Create WhatsApp Message Template (pass-through)
      • List WhatsApp Message Templates (pass-through)
      • Update WhatsApp Message Template (pass-through)
    • Send Whatsapp Template Message For Process
      POST
    • Send Whatsapp Template Message For A Phone Number
      POST
    • Upload Public Media
      POST
    • Whatsapp Messages API (pass-through)
      POST
  • Platform
    • Process
      • Fetch Process By Id
      • List Processes
      • Create Process
      • Update Process
      • Update Process By Primary Key
      • Delete Process
      • Delete Process By Primary Key Value
      • Bulk Create Process API
      • Bulk Update Process API
    • Task
      • Create Task API
    • User
      • List Users API
        GET
      • List Users API (V2)
        GET
      • Fetch User API
        GET
      • Fetch User API (V2)
        GET
      • Update User API
        GET
    • Photo
      • Fetch Photo API
      • Upload Photo API
      • Upload Photo API With Id
    • Background Job
      • Fetch Background Job
      • Fetch Background Job Entries API
    • Fetch Config
      GET
  1. User

List Users API

GET
https://api.chakrahq.com/v1/ext/users
The following API allows you to fetch all users of your team

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

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 'https://api.chakrahq.com/v1/ext/users'

Responses

🟢200Success
application/json
Body
_data
array [object {25}] 
required
id
string 
optional
createdAt
integer 
optional
updatedAt
integer 
optional
username
string 
optional
firstName
string 
optional
lastName
string 
optional
middleName
string 
optional
displayName
string 
optional
gender
string 
optional
dob
integer 
optional
bio
string 
optional
profileImageUrl
string 
optional
coverImageUrl
string 
optional
timezone
string 
optional
data
null 
optional
onboardingData
null 
optional
isActive
boolean 
optional
isDeleted
boolean 
optional
deletedAt
null 
optional
availabilityStatus
string 
optional
team
string 
optional
role
string 
optional
primaryEmail
object 
optional
primaryPhone
null 
optional
profile
null 
optional
Example
{
	"_data": [
    {
      "id": "a91b5073-e9d4-4959-9fd3-6edf79c2c5a4",
      "createdAt": 1631817298100,
      "updatedAt": 1631817298124,
      "username": "johndoe",
      "firstName": "John",
      "lastName": "Doe",
      "middleName": "",
      "displayName": "",
      "gender": "",
      "dob": 0,
      "bio": "",
      "profileImageUrl": "",
      "coverImageUrl": "",
      "timezone": "+0530",
      "data": null,
      "onboardingData": null,
      "isActive": true,
      "isDeleted": false,
      "deletedAt": null,
      "availabilityStatus": "AVAILABLE",
      "team": "64788f5d-1580-4814-855b-257c7a33aa35",
      "role": "11671be1-17bc-453d-8898-c62d94ef2bc1",
      "primaryEmail": {
        "id": "9763caa1-cef3-497f-b3b2-f551456b2831",
        "createdAt": 1631817298108,
        "updatedAt": 1631817298108,
        "email": "john@acme.com",
        "normalizedEmail": "john@acme.com",
        "type": "",
        "isVerified": false,
        "user": "a91b5073-e9d4-4959-9fd3-6edf79c2c5a4"
      },
      "primaryPhone": null,
      "profile": null,
    }
  ]
}
Previous
Create Task API
Next
List Users API (V2)
Built with