List account verifications
GET/api/v2/verify/verifications
Account-scoped verification state used to recover terminal Verify events after an SSE gap.
List account verifications
curl https://api.sendblue.co/api/v2/verify/verifications \
-H "sb-api-key-id: $SENDBLUE_API_API_KEY" \
-H "sb-api-secret-key: $SENDBLUE_API_API_SECRET"{
"data": [
{
"channel": "channel",
"date_created": "2019-12-27T18:11:19.117Z",
"date_updated": "2019-12-27T18:11:19.117Z",
"service_sid": "service_sid",
"sid": "sid",
"status": "status",
"date_completed": "2019-12-27T18:11:19.117Z",
"to": "to"
}
],
"pagination": {
"count": 0,
"has_more": true,
"limit": 0,
"offset": 0
},
"status": "OK"
}Returns Examples
{
"data": [
{
"channel": "channel",
"date_created": "2019-12-27T18:11:19.117Z",
"date_updated": "2019-12-27T18:11:19.117Z",
"service_sid": "service_sid",
"sid": "sid",
"status": "status",
"date_completed": "2019-12-27T18:11:19.117Z",
"to": "to"
}
],
"pagination": {
"count": 0,
"has_more": true,
"limit": 0,
"offset": 0
},
"status": "OK"
}