> 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: Sample Flows ## Article: Sample Flows ## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/sample-flows.md ## Article Content: # Resources API: Sample Use Cases and Flows This article presents a possible use case that you could support, along with a sample flow to implement it. This examples can serve as a helpful starting point as you plan your implementation. ## Create a bookable resource You could create a resource that's bookable only at a specific location. To create a bookable resource: 1. Call *Query Resource Types* ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resource-types/query-resource-types.md) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resource-types-v2/query-resource-types.md)) and save the ID of the relevant resource type. 1. Call *Query Locations* ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/query-locations.md) | [REST](https://dev.wix.com/docs/rest/business-management/locations/query-locations.md)) to retrieve the ID of the business location. 1. Call *Create Resource* ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/create-resource.md) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/create-resource.md)) to create the resource. Specify a `name`, the ID of the resource type and the ID of the business location. 1. Call *Query Services* ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/services/query-services.md) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/query-services.md)) Confirm that the resource type is associated with relevant services by making sure that `serviceResources.resourceType` is set to the correct resource Type ID. 1. Optional: For every service that doesn't specify the correct `resourceType`, call *Update Service* ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/services/update-service.md) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/update-service.md)). Specify the correct resource Type ID in `serviceResources.resourceType`.