The following API allow you to creat a task for a process.
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
Body Params application/json
Example
{"data":{"call_disposition":"RNR","next_call_time":"2023-11-15T09:30:00","remarks":"Couldnt reach out to the customer"},"status":"COMPLETED","assignedTo":"alex@paisapay.com"}
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 POST 'https://api.chakrahq.com/v1/ext/p/lead/LEAD-000042/task/call' \
--header'Authorization: Bearer <token>' \
--header'Content-Type: application/json' \
--data-raw'{
"data": {
"call_disposition": "RNR",
"next_call_time": "2023-11-15T09:30:00",
"remarks": "Couldnt reach out to the customer"
},
"status": "COMPLETED",
"assignedTo": "alex@paisapay.com"
}'