perform a real test send through the configured provider; flips it to `verified` on success.
POST
Secret API key operationId: verify_messaging/v1/applications/{id}/providers/messaging/verify Authorization
Server-to-server. Send a secret key as a Bearer token plus the x-application-id header.
Path parameters
idstring<uuid> requiredApplication id
Request body · required
channelstring requiredtostringWhere to send the test message (the dashboard passes the signed-in member's email).
Responses
200 Verification result
{
"data": {
"detail": "string",
"status": "string"
},
"error": {
"code": "string",
"message": "string"
},
"meta": {
"timestamp": "string"
},
"success": false
} 422 Not configured / unsupported
Request
curl -X POST "http://localhost:8080/v1/applications/018f3c4a-7b2e-7c1d-9e0a-1f2b3c4d5e6f/providers/messaging/verify" \
-H "Content-Type: application/json" \
-d '{
"channel": "string",
"to": "string"
}'Try it
live requestPOST
http://localhost:8080/v1/applications/018f3c4a-7b2e-7c1d-9e0a-1f2b3c4d5e6f/providers/messaging/verify