GET
/
statistics
/
sequences
/
{sequenceId}
/
steps
Sequence Steps
curl --request GET \
  --url https://api.reply.io/v3/statistics/sequences/{sequenceId}/steps \
  --header 'X-API-Key: <api-key>'
[
  {
    "stepId": 1,
    "stepNumber": 1,
    "type": "email",
    "contactedPeople": 50,
    "repliedPeople": 10,
    "interestedPeople": 2,
    "deliveryRate": 96,
    "openRate": 50,
    "replyRate": 10,
    "interestedRate": 2,
    "channelStats": {
      "sent": 50,
      "opened": 25,
      "replied": 5,
      "bounced": 2,
      "clicked": 3,
      "optedOut": 3
    }
  }
]

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

sequenceId
integer
required

The ID of the sequence

Response

200 - application/json

Successful response

stepId
integer

The ID of the step in the sequence

type
enum<string>

The type of step

Available options:
email,
linkedin,
sms,
call,
whatsapp,
task
stepNumber
integer

The step number in the sequence

contactedPeople
integer

The number of people who were targeted in this step

repliedPeople
integer

The number of people who replied in this step

interestedPeople
integer

The number of people who showed interest in this step

deliveryRate
number

The delivery rate for this step (percentage)

openRate
number

The open rate for this step (percentage)

replyRate
number

The reply rate for this step (percentage)

interestedRate
number

The interested rate for this step (percentage)

channelStats
object