Skip to content

Validation of PickupRuleCheck.

GET
/api/stores/{storeId}/pickupRuleCheck/{pickupDate}/{fsId}

Authorizations

Parameters

Path Parameters

storeId*
Typestring
Required
pickupDate*
Typestring
Required
fsId*
Typestring
Required

Responses

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())