Runtime_InitiateCheckout
#
Description#
This function allows you to initiate a Checkout Session in Miva without validating bill to or ship to fields. This function is intended to be called prior to calling Runtime_UpdateShipping
or Runtime_UpdateBilling
.
Request Body Parameters#
Parameter |
Type | Description |
---|---|---|
Session_Type |
String | This will always be “runtime” |
Session_ID |
String | The Session ID of the basket |
Response Parameters#
Parameter |
Type | Description |
---|---|---|
success |
boolean | Boolean value for if the request was successful |
total |
Number | Basket total |
subtotal |
Number | Basket Subtotal |
formatted_total |
String | Currency formatted total |
formatted_subtotal |
String | Currency formatted subtotal |
ready_for_checkout |
Number | Returns 0 or 1. If 0, a ready_for_checkout_reason will be provided |
ready_for_checkout_reason |
String | Reason session is not ready for checkout. Possible reasons include: 1. Missing shipping, 2. Missing Tax, 3. Missing shipping and tax |
Note
Content-Type for the request must be ‘application/json’
Example Request#
{
"Store_code": "beta",
"Function": "Runtime_InitiateCheckout",
"Session_Type": "runtime",
"Session_ID": "5bd2d2eca80b00dc79e44883a6dbbbb7"
}
Example Response#
{
"success": 1,
"data": {
"total": 10.0,
"subtotal": 10.0,
"formatted_total": "$10.00",
"formatted_subtotal": "$10.00",
"ready_for_checkout": false,
"ready_for_checkout_reason": "Missing shipping"
}
}