- 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
Leads Types
GET
/leads/types
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 *****************
Responses
🟢200Success
application/json
Body
data
array [object {2}]Â
required
name
stringÂ
required
identifier
stringÂ
required
message
stringÂ
required
Example
{
"data": [
{
"name": "All",
"identifier": "0"
},
{
"name": "Sales",
"identifier": "2"
},
{
"name": "Support",
"identifier": "3"
},
{
"name": "Others",
"identifier": "4"
},
{
"name": "testing",
"identifier": "9"
},
{
"name": "Fixed_Tax",
"identifier": "14"
}
],
"message": "success"
}
🟠401Unauthorized
Modified at 2024-09-05 09:37:14