> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Fulfillment Methods # Type: Fulfillment Method Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/online-orders/fulfillment-methods/fulfillment-method-object.md ## Description: A Fulfillment Method represents a way in which a restaurant can provide orders to its customers. ## Schema: ```json Type: Fulfillment Method Object | type: FulfillmentMethod Description: A Fulfillment Method represents a way in which a restaurant can provide orders to its customers. - name: id | type: string | description: Fulfillment method ID. - name: value | type: string | description: - name: revision | type: string | description: The current state of an item. Each time the item is modified, its `revision` changes by the server. for an update operation to succeed, you MUST pass the latest revision. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the fulfillment method was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the fulfillment method was last updated. - name: type | type: string | description: Type of fulfillment method. enum: UNKNOWN_FULFILLMENT_TYPE, PICKUP, DELIVERY - name: name | type: string | description: Fulfillment method name. - name: enabled | type: boolean | description: Whether the fulfillment method is enabled. - name: value | type: boolean | description: - name: fee | type: string | description: Fee for using this fulfillment method. - name: availability | type: Availability | description: Availability of this fulfillment method. - name: availableTimes | type: Array | description: A list of availability times for the days of the week. - name: dayOfWeek | type: string | description: The day of week this availability relates to. - name: timeRanges | type: Array | description: A list of time ranges during which the fulfillment should be available. - name: timeZone | type: string | description: The timezone in which the availability times are given. - name: minOrderPrice | type: string | description: Minimum order price to qualify for using this fulfillment method. - name: businessLocationId | type: string | description: Business location ID ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations.md) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations.md)) of the operation this fulfillment method belongs to. - name: extendedFields | type: ExtendedFields | description: Extended fields. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: tags | type: Tags | description: Tags used to classify and sort different types of fulfillment methods. - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: Array | description: List of tag IDs - name: tags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. ```