Channels API
- Email
- LinkedIn
API Documentation
- Sequences
- Sequence Actions
- Sequence Steps
- Sequence Steps Actions
- Sequence Contacts
- Contacts
- Contacts Actions
- Lists
- Templates
- Black List
- Email Accounts
- Statistics
- Reports
- Branded Links
- Webhooks
- Tasks
Schemas
Statistics
Sequence Clicks
Retrieves aggregated and link-specific click data for the specified sequence
GET
https://stoplight.io/mocks/replyteam/reply/765516802
/
statistics
/
sequences
/
{sequenceId}
/
clicks
curl --request GET \
--url https://stoplight.io/mocks/replyteam/reply/765516802/statistics/sequences/{sequenceId}/clicks
{
"sequenceId": 123,
"stepClicks": [
{
"stepId": 1,
"links": [
{
"textToDisplay": "Click here",
"title": "Welcome Link",
"url": "https://example.com/welcome",
"clicks": 10,
"lastClickDate": "2025-03-15T10:27:00Z"
},
{
"textToDisplay": "Learn more",
"title": null,
"url": "https://example.com/learn",
"clicks": 5,
"lastClickDate": "2025-03-15T12:40:00Z"
}
]
},
{
"stepId": 2,
"links": []
}
]
}
Path Parameters
The ID of the sequence
Response
200 - application/json
Successful response
The response is of type object
.
curl --request GET \
--url https://stoplight.io/mocks/replyteam/reply/765516802/statistics/sequences/{sequenceId}/clicks
{
"sequenceId": 123,
"stepClicks": [
{
"stepId": 1,
"links": [
{
"textToDisplay": "Click here",
"title": "Welcome Link",
"url": "https://example.com/welcome",
"clicks": 10,
"lastClickDate": "2025-03-15T10:27:00Z"
},
{
"textToDisplay": "Learn more",
"title": null,
"url": "https://example.com/learn",
"clicks": 5,
"lastClickDate": "2025-03-15T12:40:00Z"
}
]
},
{
"stepId": 2,
"links": []
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.