Skip to main content
POST
/
users
/
confirm
Confirm user registration
curl --request POST \
  --url https://api.pcxpay.com/v1/users/confirm \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "confirmation_code": "<string>"
}
'
{
  "message": "User confirmed successfully"
}

Body

application/json
email
string<email>
required
confirmation_code
string
required

Response

User confirmed

message
string
Example:

"User confirmed successfully"