Zapiet Docs
Zapiet Pickup + Delivery
Zapiet Pickup + Delivery
  • Widget API
  • Overview
    • Base url
  • Reference
    • Store pickup
      • Locations
      • Dates
        • Times
      • Regions
    • Local delivery
      • Locations
      • Dates
      • Times
    • Shipping
      • Dates
    • Validation
    • Geolocate
    • Conditional activation
    • Preparation times
    • Settings
  • JavaScript API
    • Events
    • Methods
  • Guides
    • ZapietId
    • Attributes
  • Other resources
    • Vulnerability Reporting
Powered by GitBook
On this page
  1. Reference
  2. Store pickup
  3. Dates

Times

Get pickup times

POST https://api.zapiet.com/v1.0/pickup/locations/:locationId/calendar/:date

Path Parameters

Name
Type
Description

date*

string

The date you would like to get delivery times for YYYY-MM-DD.

locationId*

string

The Zapiet location ID.

Query Parameters

Name
Type
Description

shop*

string

The merchant's myshopify.com store url.

[
  {
    "id": 1,
    "location_id": 1,
    "day_of_week": "wednesday",
    "available_from": "09:00",
    "available_until": "09:30",
    "limited": true,
    "limit": 10
  },
  {
    "id": 2,
    "location_id": 1,
    "day_of_week": "wednesday",
    "available_from": "09:30",
    "available_until": "10:00",
    "limited": true,
    "limit": 10
  }
]
PreviousDatesNextRegions

Last updated 6 months ago