> 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 # GetResourceType # Package: resources # Namespace: ResourceTypesService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/get-resource-type.md ## Permission Scopes: Read Bookings - Public Data: SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC Read Bookings Calendar: SCOPE.DC-BOOKINGS.SESSIONS-RESOURCES ## Introduction Retrieves a resource type. --- ## REST API ### Schema ``` Method: getResourceType Description: Retrieves a resource type. URL: https://www.wixapis.com/bookings/v2/resources/resource-types/{resourceTypeId} Method: GET # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: resourceTypeId Method parameters: param name: resourceTypeId | type: none | required: true Return type: GetResourceTypeResponse - name: resourceType | type: ResourceType | description: Retrieved 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). ``` ### Examples ### Retrieve a resource type. ```curl curl -X GET \ 'https://www.wixapis.com/bookings/v2/resources/resource-types/28221941-9d0d-4c91-806b-e2a08073d37a' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.resources.ResourceTypesService.getResourceType(resourceTypeId) Description: Retrieves a resource type. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: resourceTypeId Method parameters: param name: resourceTypeId | type: string | description: GUID of the resource type to retrieve. | required: true 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). ``` ### Examples ### getResourceType ```javascript import { resourceTypes } from '@wix/bookings'; async function getResourceType(resourceTypeId) { const response = await resourceTypes.getResourceType(resourceTypeId); }; ``` ### getResourceType (with elevated permissions) ```javascript import { resourceTypes } from '@wix/bookings'; import { auth } from '@wix/essentials'; async function myGetResourceTypeMethod(resourceTypeId) { const elevatedGetResourceType = auth.elevate(resourceTypes.getResourceType); const response = await elevatedGetResourceType(resourceTypeId); } ``` ### getResourceType (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 getResourceType(resourceTypeId) { const response = await myWixClient.resourceTypes.getResourceType(resourceTypeId); }; ``` ---