Validation of PickupRuleCheck.
GET
/api/stores/{storeId}/pickupRuleCheck/{pickupDate}/{fsId}Authorizations
api_key
Type: API Key (header: X-CSRF-Token)
Parameters
Path Parameters
storeId*
Typestring
RequiredpickupDate*
Typestring
RequiredfsId*
Typestring
RequiredResponses
Authorization
api_key
Variables
Key
Value
storeId*
pickupDate*
fsId*
cURL
curl -X GET \
'http://localhost/api/stores/{storeId}/pickupRuleCheck/{pickupDate}/{fsId}'
Samples
cURL
curl -X GET http://localhost/api/stores/{storeId}/pickupRuleCheck/{pickupDate}/{fsId}
JavaScript
fetch("http://localhost/api/stores/{storeId}/pickupRuleCheck/{pickupDate}/{fsId}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/stores/{storeId}/pickupRuleCheck/{pickupDate}/{fsId}");
Python
import requests
response = requests.get("http://localhost/api/stores/{storeId}/pickupRuleCheck/{pickupDate}/{fsId}")
print(response.json())