ChakraHQ APIs
HomeSign In
HomeSign In
  1. User
  • API Keys
  • Response Format
  • Whatsapp
    • Inbound Events Webhook
    • How to figure out pluginId and whatsappPhoneNumberId
    • Pass Through APIs
      • Create WhatsApp Message Template (pass-through)
      • List WhatsApp Message Templates (pass-through)
      • Update WhatsApp Message Template (pass-through)
      • Whatsapp Messages API (pass-through)
      • Fetch Whatsapp Media API
      • Show Whatsapp Media Attachments API
    • Send Whatsapp Template Message For Process
      POST
    • Send Whatsapp Template Message For A Phone Number
      POST
    • Upload Public Media
      POST
    • Show Whatsapp Media API
      GET
    • Create a lead
      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 (V2)

GET
https://api.chakrahq.com/v2/ext/users
The following API allows you to fetch all users of your team
NOTE: The v2 api response is humanized when compare to v1 response - wherever possible config ids and data are in readable format

Request

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

Request Code 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/v2/ext/users' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
	"_data": [
    {
      "id": "a91b5073-e9d4-4959-9fd3-6edf79c2c5a4",
      "createdAt": "2021-09-16T18:34:58.108+05:30",
      "updatedAt": "2021-09-16T18:34:58.108+05:30",
      "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": "paisapay",
      "role": "inside_sales",
      "primaryEmail": "john@acme.com",
      "primaryPhone": null,
      "profile": null,
    }
  ]
}
Modified at 2025-05-12 09:05:53
Previous
List Users API
Next
Fetch User API
Built with