# Get unsubscribes of a campaign
# HTTP method: GET
https://api.sender.net/v2/campaigns/{id}/unsubscribes
Returns a list of subscribers who unsubscribed from this campaign.
id string
required
Campaign ID
Code snippets
Response example
{
"data": {
"recipient_id": "W6EX1PJ",
"email": "[email protected]",
"created_at": "2021-05-13 16:16:02"
},
"links": {
"first": "https://api.sender.net/v2/campaigns/ej0gRP/unsubscribes?page=1",
"last": "https://api.sender.net/v2/campaigns/ej0gRP/unsubscribes?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "pagination.previous",
"active": false
},
{
"url": "https://api.sender.net/v2/campaigns/ej0gRP/unsubscribes?page=1",
"label": 1,
"active": true
},
{
"url": null,
"label": "pagination.next",
"active": false
}
],
"path": "https://api.sender.net/v2/campaigns/ej0gRP/unsubscribes",
"per_page": 10,
"to": 1,
"total": 1
}
}