Skip to main content
POST
/
payment-links
/
otp
Send OTP to email
curl --request POST \
  --url https://prod-api.pcxpay.com/v1/payment-links/otp \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "customer@example.com"
}
'
{
  "message": "OTP sent successfully"
}

Body

application/json
email
string<email>
required

Email address to send the OTP to.

Example:

"customer@example.com"

Response

OTP sent successfully.

message
string
Example:

"OTP sent successfully"