Body
application/json
Data required for the third step of user signup
Handles the third step of user signup, involving payment details submission and processing.
curl --request POST \
--url https://api-staging.helpyousponsor.com/v1/admin/signup/step_three \
--header 'Content-Type: application/json' \
--data '{
"user_id": 123,
"number": "<string>",
"cvc": "<string>",
"expiryMonth": "<string>",
"expiryYear": "<string>",
"first_name": "<string>",
"last_name": "<string>"
}'
{
"message": "<string>",
"status": "<string>"
}
Data required for the third step of user signup
curl --request POST \
--url https://api-staging.helpyousponsor.com/v1/admin/signup/step_three \
--header 'Content-Type: application/json' \
--data '{
"user_id": 123,
"number": "<string>",
"cvc": "<string>",
"expiryMonth": "<string>",
"expiryYear": "<string>",
"first_name": "<string>",
"last_name": "<string>"
}'
{
"message": "<string>",
"status": "<string>"
}