POST Resend SMS
Send a reminder SMS with the original capture URL to the session’s recipient (Lithia use case). Allowed once per session within 7 days.
Last updated
curl --location --request POST 'https://openapi.paveapi.com/v2/capture/sessions/TOA-XYCBCSR6DD/resend' \
--header 'API-Access-Token: <your-token>' \
--header 'Content-Type: application/json'curl --location --request POST 'https://openapi.paveapi.com/v2/capture/sessions/TOA-XYCBCSR6DD/resend' \
--header 'API-Access-Token: <your-token>' \
--header 'Content-Type: application/json' \
--data-raw '{ "phone": "+84989137086" }'{
"status": "success",
"message": "SMS resend has been processed",
"session_key": "TOA-XYCBCSR6DD",
"phone": "+18005550123",
"session_age_days": 2,
"days_remaining": 5
}{
"status": "error",
"message": "Session not found",
"session_key": "TOA-INVALID"
}{
"status": "error",
"message": "Session is already finalized and cannot be resent",
"session_key": "TOA-XYCBCSR6DD",
"session_status": "QC_PASSED"
}{
"status": "error",
"message": "Session has expired (older than 7 days)",
"session_key": "TOA-XYCBCSR6DD",
"age_days": 9,
"max_days": 7
}{
"status": "error",
"message": "SMS resend already attempted for this session",
"session_key": "TOA-XYCBCSR6DD",
"previous_resend_at": "2025-09-08T10:00:00Z",
"total_attempts": 2
}