curl --request POST \
--url https://api.reply.io/v3/tasks/{id}/complete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"callResolution": 123,
"finishProspectInSequence": false
}
'import requests
url = "https://api.reply.io/v3/tasks/{id}/complete"
payload = {
"callResolution": 123,
"finishProspectInSequence": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({callResolution: 123, finishProspectInSequence: false})
};
fetch('https://api.reply.io/v3/tasks/{id}/complete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.reply.io/v3/tasks/{id}/complete",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'callResolution' => 123,
'finishProspectInSequence' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.reply.io/v3/tasks/{id}/complete"
payload := strings.NewReader("{\n \"callResolution\": 123,\n \"finishProspectInSequence\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.reply.io/v3/tasks/{id}/complete")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"callResolution\": 123,\n \"finishProspectInSequence\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.reply.io/v3/tasks/{id}/complete")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"callResolution\": 123,\n \"finishProspectInSequence\": false\n}"
response = http.request(request)
puts response.read_body{
"id": 123,
"contactId": 123,
"taskType": "toDo",
"status": "new",
"linkedInTaskType": "message",
"sequenceId": 123,
"sequenceStepId": 123,
"sequenceStepDisplayName": "<string>",
"assignedUserId": 123,
"creationSource": "user",
"createdAt": "2023-11-07T05:31:56Z",
"startAt": "2023-11-07T05:31:56Z",
"dueTo": "2023-11-07T05:31:56Z",
"finishedAt": "2023-11-07T05:31:56Z",
"isFailed": true,
"isScheduled": true,
"template": {
"body": "<string>",
"subject": "<string>",
"attachmentIdList": [
123
]
},
"content": {
"body": "<string>",
"subject": "<string>"
},
"deliveryInfo": {
"email": "<string>",
"phoneNumber": "<string>",
"linkedInUrl": "<string>"
}
}{
"title": "Validation failed",
"status": 400,
"detail": "The request contains validation errors.",
"errors": [
{
"pointer": "id",
"detail": "'id' must be a positive integer."
}
]
}{
"title": "Unauthorized",
"status": 401,
"detail": "Authentication credentials are missing or invalid."
}{
"title": "Forbidden",
"status": 403,
"detail": "Feature scopes [ManageTask] are denied for userId 123.",
"code": "task.forbidden"
}{
"title": "Not Found",
"status": 404,
"detail": "Task with ID 42 not found or insufficient permissions.",
"code": "task.notFound"
}{
"title": "Conflict",
"status": 409,
"detail": "Task is already finished or in an invalid state for completion.",
"code": "task.cannotComplete"
}{
"title": "Too Many Requests",
"status": 429,
"detail": "Rate limit exceeded. Retry after 60 seconds."
}Complete a task
tasks:operate scope (or a broader one that includes it).
Mark a task done without carrying it out. On a call task, pass callResolution to record how the call went.
curl --request POST \
--url https://api.reply.io/v3/tasks/{id}/complete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"callResolution": 123,
"finishProspectInSequence": false
}
'import requests
url = "https://api.reply.io/v3/tasks/{id}/complete"
payload = {
"callResolution": 123,
"finishProspectInSequence": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({callResolution: 123, finishProspectInSequence: false})
};
fetch('https://api.reply.io/v3/tasks/{id}/complete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.reply.io/v3/tasks/{id}/complete",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'callResolution' => 123,
'finishProspectInSequence' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.reply.io/v3/tasks/{id}/complete"
payload := strings.NewReader("{\n \"callResolution\": 123,\n \"finishProspectInSequence\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.reply.io/v3/tasks/{id}/complete")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"callResolution\": 123,\n \"finishProspectInSequence\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.reply.io/v3/tasks/{id}/complete")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"callResolution\": 123,\n \"finishProspectInSequence\": false\n}"
response = http.request(request)
puts response.read_body{
"id": 123,
"contactId": 123,
"taskType": "toDo",
"status": "new",
"linkedInTaskType": "message",
"sequenceId": 123,
"sequenceStepId": 123,
"sequenceStepDisplayName": "<string>",
"assignedUserId": 123,
"creationSource": "user",
"createdAt": "2023-11-07T05:31:56Z",
"startAt": "2023-11-07T05:31:56Z",
"dueTo": "2023-11-07T05:31:56Z",
"finishedAt": "2023-11-07T05:31:56Z",
"isFailed": true,
"isScheduled": true,
"template": {
"body": "<string>",
"subject": "<string>",
"attachmentIdList": [
123
]
},
"content": {
"body": "<string>",
"subject": "<string>"
},
"deliveryInfo": {
"email": "<string>",
"phoneNumber": "<string>",
"linkedInUrl": "<string>"
}
}{
"title": "Validation failed",
"status": 400,
"detail": "The request contains validation errors.",
"errors": [
{
"pointer": "id",
"detail": "'id' must be a positive integer."
}
]
}{
"title": "Unauthorized",
"status": 401,
"detail": "Authentication credentials are missing or invalid."
}{
"title": "Forbidden",
"status": 403,
"detail": "Feature scopes [ManageTask] are denied for userId 123.",
"code": "task.forbidden"
}{
"title": "Not Found",
"status": 404,
"detail": "Task with ID 42 not found or insufficient permissions.",
"code": "task.notFound"
}{
"title": "Conflict",
"status": 409,
"detail": "Task is already finished or in an invalid state for completion.",
"code": "task.cannotComplete"
}{
"title": "Too Many Requests",
"status": 429,
"detail": "Rate limit exceeded. Retry after 60 seconds."
}Authorizations
Authenticate every request with a Bearer token. Pass your Reply API key in the
Authorization header:
Authorization: Bearer <your-api-key>
Get your API key from the Reply dashboard: Settings → API Key.
Path Parameters
Task ID.
Body
Request body for completing a task without execution.
All fields are optional — an empty object {} is valid.
Call resolution outcome. Only meaningful for Call tasks. Affects sequence branching.
0 = Positive, 1 = ToCall, 2 = Negative.
If true, also removes the prospect from the sequence. The finish reason is derived automatically from the task type (Call → Called, others → Manual).
Response
Task completed successfully. Returns the updated task.
Full task detail returned by GET by ID, Create, and Update endpoints.
Task ID.
Associated contact (prospect) ID.
Task type.
Possible values: toDo, call, meeting, linkedIn, manualEmail, sms, whatsApp.
toDo, call, meeting, linkedIn, manualEmail, sms, whatsApp Task status.
Possible values: new, finished, cancelled, archived, sequenceDetached.
new, finished, cancelled, archived, sequenceDetached LinkedIn action subtype. Only present for LinkedIn tasks.
Possible values: message, connect, inMail, viewProfile.
message, connect, inMail, viewProfile Sequence ID if this task was created by a sequence.
Sequence step ID. Available when the ExtendedFilterInTasks feature is enabled.
Human-readable sequence step name (e.g. "Step 2 - Email").
ID of the user this task is assigned to.
How the task was created.
Possible values: user, sequence, meeting.
user, sequence, meeting When the task was created.
Task start time. When isScheduled is true, this is the scheduled execution time.
Task due time.
When the task was completed. Null for active tasks.
Whether the task execution failed.
Whether the task is scheduled for automatic execution.
Raw task template. For active tasks, may contain {{variable}} placeholders.
For finished tasks, contains the final content (raw version is no longer available).
Show child attributes
Show child attributes
Rendered content with variables resolved. Only populated when includeContent=true query parameter is set.
Null by default.
Show child attributes
Show child attributes
Delivery target information. Populated for ManualEmail (email), Call/SMS (phone), and LinkedIn (URL) tasks. Null for ToDo, Meeting, and WhatsApp tasks.
Show child attributes
Show child attributes