Run in Apidog
POST /open/customer/forgotPassword# This endpoint is used to initiate the process of resetting a customer's password. Request Body# api_key
(text, required): The API key for authentication.
email
(text, required): The email address of the customer for password reset.
language
(text, required): The preferred language for communication.
Response# The response for this request is not in JSON format. Instead, it returns a 404 status code with a content type of text/html, along with an error message in the HTML format. Response JSON Schema# {
"message" : "string" ,
"status" : "number" ,
"data" : "object"
}
Request Body Params application/json
{
"api_key" : "asdfadsfas" ,
"email" : "sshak@gmail.com" ,
"language" : "en"
}
Request samples curl --location --request POST 'https://api.yelo.red/open/customer/forgotPassword' \
--header 'Content-Type: application/json' \
--data-raw '{
"api_key": "asdfadsfas",
"email" : "sshak@gmail.com",
"language" : "en"
}'
Responses application/json Generate Code
Modified at 2024-04-17 07:11:33