Create a pending verified contact
POST/v3/verified-contacts
Creates or returns a verified-contact route for the authenticated account’s shared iMessage line. Pending contacts become verified after the recipient sends an inbound iMessage or SMS to the returned line phone number.
Create a pending verified contact
curl https://api.sendblue.co/v3/verified-contacts \
-H 'Content-Type: application/json' \
-H "sb-api-key-id: $SENDBLUE_API_API_KEY" \
-H "sb-api-secret-key: $SENDBLUE_API_API_SECRET" \
-d '{
"phone_number": "+12125550199"
}'{
"data": {
"contact": {
"created_at": "2026-08-12T18:32:12.000Z",
"phone_number": "+12125550199",
"updated_at": "2026-08-12T18:32:12.000Z",
"verification_status": "pending",
"verified": false
},
"line": {
"phone_number": "+12125550101",
"type": "shared"
},
"verification_instructions": "Ask +12125550199 to send any iMessage or SMS to +12125550101 to complete verification."
}
}Returns Examples
{
"data": {
"contact": {
"created_at": "2026-08-12T18:32:12.000Z",
"phone_number": "+12125550199",
"updated_at": "2026-08-12T18:32:12.000Z",
"verification_status": "pending",
"verified": false
},
"line": {
"phone_number": "+12125550101",
"type": "shared"
},
"verification_instructions": "Ask +12125550199 to send any iMessage or SMS to +12125550101 to complete verification."
}
}