Cancel Lead

PUT /order/client/tieup/lead-order/to-cancel

curl --location '{{url}}/order/client/tieup/lead-order/to-cancel' \
--header 'key-id: {{client_secret_code}}' \
--header 'Content-Type: application/json' \
--header 'Authorization: {{auth_token}}' \
--data '{
    "clientId": {{client_id}},
    "leadId": 123,
    "notes": "Lorem Ipsum"
}'

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

key-id

{{client_secret_code}}

Body

Name
Type
Description

clientId

string

Client ID

leadId

number

Lead ID

notes

string

Response


Last updated