List Accounts
Endpoint: /v1/accounts/list-by-practitioner
/v1/accounts/list-by-practitionerMethod: GET
Query Parameters:
Key
Value
pageSize
Number of Records to be returned
page
Page Number
Response
Param
Type
Description
message
String
Response message indicating the status of the operation.
page
Number
Current page number of the retrieved data.
pageSize
Number
Number of records per page.
total
Number
Total number of records available.
data
Array
List of retrieved account records.
data[].ID
String
Unique identifier for the account.
data[].AccountName
String
Name of the account (e.g., clinic or organization name).
Example
{
"data": [
{
"ID": "674a51bf84090f01bec2fda7",
"AccountName": "Clinic One"
}
],
"message": "Data Retrieved",
"page": 1,
"pageSize": 10,
"total": 1
}Last updated