Email Verification
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"email" : "hi@liupurnomo.com",
"code" : "VHBA"
}
Request Code Samples
curl --location --request POST '/api/v1/auth/verify' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"email" : "hi@liupurnomo.com",
"code" : "VHBA"
}'
Responses
application/json Modified at 2024-10-06 04:47:36