> 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 # UpdateResourceType # Package: resources # Namespace: ResourceTypesService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/update-resource-type.md ## Permission Scopes: Manage Bookings: SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS ## Introduction Updates a resource type. Each time the resource type is updated, `revision` increments by 1. You must include current revision of the resource type when updating it. This ensures you're working with the latest service information and prevents unintended overwrites. --- ## REST API ### Schema ``` Method: updateResourceType Description: Updates a resource type. Each time the resource type is updated, `revision` increments by 1. You must include current revision of the resource type when updating it. This ensures you're working with the latest service information and prevents unintended overwrites. URL: https://www.wixapis.com/bookings/v2/resources/resource-types/{resourceType.id} Method: PATCH # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: resourceType, resourceType.id, resourceType.revision Method parameters: param name: resourceType | type: ResourceType | description: A resource type is a classification of resources. For example room, equipment, or vehicle. Customers can only book [services](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/introduction.md) if at least 1 [resource](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction.md) for every resource type connected to the service is available during the requested time. | required: true - name: id | type: string | description: Resource type GUID. | required: true - name: revision | type: string | description: Revision number, which increments by 1 each time the resource type is updated. To prevent conflicting changes, the current revision must be passed when updating the resource type. | required: true - name: name | type: string | description: Name of the resource type. For example, `meeting room`. The name must be unique per site. - name: extendedFields | type: ExtendedFields | description: Extensions enabling users to save custom data related to the resource type. - 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). Return type: UpdateResourceTypeResponse - name: resourceType | type: ResourceType | description: Updated resource type. - name: id | type: string | description: Resource type GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the resource type is updated. To prevent conflicting changes, the current revision must be passed when updating the resource type. - name: createdDate | type: string | description: Time in `YYYY-MM-DDThh:mm:ss.sssZ` format the resource type was created. - name: updatedDate | type: string | description: Time in `YYYY-MM-DDThh:mm:ss.sssZ` format the resource type was last updated. - name: name | type: string | description: Name of the resource type. For example, `meeting room`. The name must be unique per site. - name: extendedFields | type: ExtendedFields | description: Extensions enabling users to save custom data related to the resource type. - 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). Possible Errors: HTTP Code: 409 | Status Code: ALREADY_EXISTS | Application Code: RESOURCE_TYPE_ALREADY_EXISTS_FOR_NAME | Description: There is already a resource type with this name. Choose a different name. ``` ### Examples ### Update a resource type. To update a resource type the fields `id` and `revision` are required. Partial updates are supported. ```curl curl -X PATCH \ 'https://www.wixapis.com/bookings/v2/resources/resource-types/28221941-9d0d-4c91-806b-e2a08073d37a' \ -H 'Authorization: ' \ -d '{ "resourceType": { "id": "28221941-9d0d-4c91-806b-e2a08073d37a", "revision": "1", "name": "Meeting room with conference system" } }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.resources.ResourceTypesService.updateResourceType(_id, resourceType) Description: Updates a resource type. Each time the resource type is updated, `revision` increments by 1. You must include current revision of the resource type when updating it. This ensures you're working with the latest service information and prevents unintended overwrites. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: resourceType, _id, resourceType.revision Method parameters: param name: _id | type: string | description: Resource type GUID. | required: true param name: resourceType | type: UpdateResourceType | description: A resource type is a classification of resources. For example room, equipment, or vehicle. Customers can only book [services](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/introduction.md) if at least 1 [resource](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction.md) for every resource type connected to the service is available during the requested time. | required: true - name: revision | type: string | description: Revision number, which increments by 1 each time the resource type is updated. To prevent conflicting changes, the current revision must be passed when updating the resource type. | required: true - name: name | type: string | description: Name of the resource type. For example, `meeting room`. The name must be unique per site. - name: extendedFields | type: ExtendedFields | description: Extensions enabling users to save custom data related to the resource type. - 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). Return type: PROMISE - name: _id | type: string | description: Resource type GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the resource type is updated. To prevent conflicting changes, the current revision must be passed when updating the resource type. - name: _createdDate | type: Date | description: Time in `YYYY-MM-DDThh:mm:ss.sssZ` format the resource type was created. - name: _updatedDate | type: Date | description: Time in `YYYY-MM-DDThh:mm:ss.sssZ` format the resource type was last updated. - name: name | type: string | description: Name of the resource type. For example, `meeting room`. The name must be unique per site. - name: extendedFields | type: ExtendedFields | description: Extensions enabling users to save custom data related to the resource type. - 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). Possible Errors: HTTP Code: 409 | Status Code: ALREADY_EXISTS | Application Code: RESOURCE_TYPE_ALREADY_EXISTS_FOR_NAME | Description: There is already a resource type with this name. Choose a different name. ``` ### Examples ### updateResourceType ```javascript import { resourceTypes } from '@wix/bookings'; async function updateResourceType(_id,resourceType) { const response = await resourceTypes.updateResourceType(_id,resourceType); }; ``` ### updateResourceType (with elevated permissions) ```javascript import { resourceTypes } from '@wix/bookings'; import { auth } from '@wix/essentials'; async function myUpdateResourceTypeMethod(_id,resourceType) { const elevatedUpdateResourceType = auth.elevate(resourceTypes.updateResourceType); const response = await elevatedUpdateResourceType(_id,resourceType); } ``` ### updateResourceType (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { resourceTypes } from '@wix/bookings'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { resourceTypes }, // Include the auth strategy and host as relevant }); async function updateResourceType(_id,resourceType) { const response = await myWixClient.resourceTypes.updateResourceType(_id,resourceType); }; ``` ---