GET

List Fulfillment Methods


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Retrieves a list of up to 100 fulfillment methods.

Permissions
Manage Restaurants - all permissions
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/fulfillment-methods/v1/fulfillment-methods

Query Params
cursorPaging.limitintegerminimum 0maximum 100format int32

Maximum number of items to return in the results.


cursorPaging.cursorstringmaxLength 16000

Pointer to the next or previous page in the list of results.

Pass the relevant cursor token from the pagingMetadata object in the previous call's response. Not relevant for the first request.

Response Object
fulfillmentMethodsArray <FulfillmentMethod>

The retrieved fulfillment methods.


pagingMetadataPagingMetadata

The metadata of the paginated results.

Request
cURL
curl 'https://www.wixapis.com/restaurants/v1/fulfillment-methods' -H 'Authorization: <AUTH>'
Response
JSON
{ "fulfillment_methods": [ { "id": "2b060045-c554-4e43-84b4-146500fbd77a", "revision": "1", "created_date": "2023-11-27T06:51:54.176Z", "updated_date": "2023-11-27T06:51:54.176Z", "type": "DELIVERY", "delivery_options": { "delivery_time_in_minutes": 30, "free_delivery_threshold": null, "delivery_area": { "type": "RADIUS", "radius_options": { "value": "1", "max_distance": "1", "center_point_address": { "country": "US", "subdivision": "CA", "city": "San Francisco", "postal_code": "94158", "address_line": "500 Terry Francine Street", "address_line_2": null, "formatted_address": "500 Terry Francine Street, San Francisco, CA 94158, USA", "hint": null, "geocode": { "latitude": 37.774836, "longitude": -122.387258 }, "country_fullname": "United States", "subdivisions": [], "subdivision_fullname": null }, "unit": "MILES" } } }, "name": "Delivery Area #1", "enabled": true, "fee": "0", "availability": { "available_times": [ { "day_of_week": "SUN", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "MON", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "TUE", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "WED", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "THU", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "FRI", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "SAT", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] } ], "exceptions": [], "time_zone": "Europe/Dublin" } }, { "id": "f51bc4c5-e76d-4688-9aa4-936c7ff4fe37", "revision": "1", "created_date": "2023-11-27T06:51:54.176Z", "updated_date": "2023-11-27T06:51:54.176Z", "type": "PICKUP", "pickup_options": { "instructions": null, "address": { "country": "US", "subdivision": "CA", "city": "San Francisco", "postal_code": "94158", "address_line": "500 Terry Francine Street", "address_line_2": null, "formatted_address": "500 Terry Francine Street, San Francisco, CA 94158, USA", "hint": null, "geocode": { "latitude": 37.774836, "longitude": -122.387258 }, "country_fullname": "United States", "subdivisions": [], "subdivision_fullname": null } }, "name": "Pickup", "enabled": true, "fee": null, "availability": { "available_times": [ { "day_of_week": "SUN", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "MON", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "TUE", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "WED", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "THU", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "FRI", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] }, { "day_of_week": "SAT", "time_ranges": [ { "start_time": { "hours": 0, "minutes": 0 }, "end_time": { "hours": 23, "minutes": 45 } } ] } ], "exceptions": [], "time_zone": "Europe/Dublin" } } ], "paging_metadata": { "count": 2, "cursors": { "next": null, "prev": null }, "has_next": false } }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?