Resend Confirmation Code

POST https://api.sfox.com/v1/enterprise/transfer/resend-confirmation

If a user does not receive an OTP code or if the code has expired, you can request a new code using this endpoint. Once requested, the user will receive an email with the new OTP code.

Body Parameter

Name
Type
Description

transfer_id required

string

Partner generated transfer and idempotency ID

Responses

200 OK
{
    "data": {
        "success": true
    }
}
422 Unprocessable Content
{
    "error": "Transfer with transfer_id 7735757c-863e-4e07-9b84-af186424ebae not found."
}
{
    "error": "Funds transfer is not pending verification."
}

Example Requests

curl -X POST \
  -H 'Content-type: application/json' \
  -H "Authorization: Bearer ${ENTERPRISE_API_KEY}" \
  --data '{ "transfer_id": "7735757c-863e-4e07-9b84-af186424ebae" }'  \
  'https://api.sfox.com/v1/enterprise/transfer/resend-confirmation'

Last updated