Runtime_Customer_Login
#
This is a runtime function intended to be called client side to log in a customer. Because this is a runtime (public) function no API key is required.
Request Parameters#
Parameter |
Type | Description |
---|---|---|
session_type |
String | This will always have a hard-coded value of “runtime.” This tells Miva, no authentication is needed for the API call. |
Customer_Login |
String | Customer login value. One of Customer_LoginEmail or Customer_Login must be specified |
Customer_LoginEmail |
String | Customer lost email password value. One of Customer_LoginEmail or Customer_Login must be specified |
Customer_Password |
String | String of customer passcode |
Example Requests#
{
"Store_Code": "{{Store_Code}}",
"Function": "Runtime_Customer_Login",
"Session_Type": "runtime",
"Customer_Login":"{{Customer_Login}}",
"Customer_Password": "{{Customer_Password}}"
}
Example Response#
{
"success": 1
}