Skip to content

GET /api/stores/{storeId}/pickups

GET
/api/stores/{storeId}/pickups

Authorizations

api_key
Type: API Key (header: X-CSRF-Token)

Parameters

Path Parameters

storeId*
Typestring
Required

Responses

Authorization
api_key
Variables
Key
Value
storeId*
cURL
curl -X GET \
'http://localhost/api/stores/{storeId}/pickups'

Samples

cURL
curl -X GET http://localhost/api/stores/{storeId}/pickups
JavaScript
fetch("http://localhost/api/stores/{storeId}/pickups")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/stores/{storeId}/pickups");
Python
import requests
response = requests.get("http://localhost/api/stores/{storeId}/pickups")
print(response.json())