- Introduction
- Staff API Overview
- Leads API Overview
- Call Logs API Overview
- Tickets API Overview
- Deals Management API Overview
- List DealsGET
- Create a DealPOST
- Update a DealPUT
- Get a Deal DetailsGET
- List Deals SourcesGET
- List Deals PipelineGET
- Add a Deal CommentPOST
- Update a Deal CommentPUT
- Add an AttachmentPOST
- Delete an AttachmentDELETE
- List a Deal ServicesGET
- Get a Deal Service DetailGET
- Add a Deal ServicePOST
- Update a Deal ServicePUT
List Staff Members
GET
/staff/list
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string {{Username}}:{{Password}}Example:
Authorization: Basic *****************
Query Params
limit
string
optional
Example:
10
offset
string
optional
Example:
0
Body Params multipart/form-data
object {0}
Responses
🟢200Success
application/json
Body
data
array [object {6}]
required
staffid
string
optional
email
string
optional
fullname
string
optional
role
string
optional
last_login
string
optional
active
string
optional
page
object
required
current_page
integer
required
from
integer
required
to
integer
required
total
integer
required
per_page
integer
required
last_page
integer
required
next
integer
required
previous
integer
required
message
string
required
Example
{
"data": [
{
"staffid": "1",
"email": "[email protected]",
"fullname": "john doe",
"role": "Admin",
"last_login": "2024-08-09 14:05:27",
"active": "1"
}
],
"page": {
"current_page": 1,
"from": 1,
"to": 1,
"total": 1,
"per_page": 10,
"last_page": 0,
"next": -1,
"previous": 0
},
"message": "success"
}
🟠401Unauthorized
Modified at 2024-09-05 09:35:20