Resource Types Errors

This article outlines error messages that might be issued when calling endpoints of the Resource Types API.

Create Resource Type

The Create Resource Type might issue the following error messages:

HTTP status
Error code
Error message
Troubleshooting
ALREADY_EXISTS (400)RESOURCE_TYPE_ALREADY_EXISTS_FOR_NAMEResourceType with name <name> already exists.Make sure that the name of the resource type is unique within the site you are creating it.
RESOURCE_EXHAUSTED (429)MAX_NUMBER_OF_RESOURCE_TYPES_REACHEDThe maximum number of <limit> resource types has been reached.Delete unused resource types or upgrade your premium subscription.

Update Resource Type

The Update Resource Type endpoint might issue the following error messages:

HTTP status
Error code
Error message
Troubleshooting
ALREADY_EXISTS (400)RESOURCE_TYPE_ALREADY_EXISTS_FOR_NAMEResourceType with name <name> already exists.Make sure that the name of the resource type is unique within the site you are creating it.
Did this help?

Resource Types: Filtering and Sorting

This article covers field support for filtering in Query Resource Types (SDK | REST) and Count Resource Types (SDK | REST).

Filtering

Specify the filter object in the following format:

Copy

The following table shows field support for filters and sorting for the resourceType object:

FieldSupported FiltersSortable
id$eq, $ne, $exists, $in, $nin, $startsWithSortable
name$eq, $ne, $exists, $in, $nin, $startsWith, $isEmptySortable

Sorting

Results in Query Resource Types (SDK | REST) are sorted by id in ascending order by default.

To sort by a different field, use the sort object in the following format:

Copy

See also

Did this help?

Resource Type Object


A resource type is a classification of resources. For example room, equipment, or vehicle. Customers can only book services (SDK | REST) if at least 1 resource (SDK | REST) for every resource type connected to the service is available during the requested time.

Properties
idstringRead-onlyformat GUID

Resource type ID.


revisionintegerRead-onlyformat int64

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.


createdDatestringRead-onlyformat date-time

Time in YYYY-MM-DDThh:mm:ss.sssZ format the resource type was created.


updatedDatestringRead-onlyformat date-time

Time in YYYY-MM-DDThh:mm:ss.sssZ format the resource type was last updated.


namestringmaxLength 40minLength 1

Name of the resource type. For example, meeting room. The name must be unique per site.


extendedFieldsExtendedFields

Extensions enabling users to save custom data related to the resource type.

ResourceType
JSON
{ "resourceType": { "id": "28221941-9d0d-4c91-806b-e2a08073d37a", "revision": "1", "createdDate": "2024-11-14T13:32:36.462Z", "updatedDate": "2024-11-14T13:32:36.462Z", "name": "Meeting room" } }
Did this help?

POST

Create Resource Type


Developer Preview

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

Creates a new resource type.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Bookings - all permissions
Manage Bookings
Learn more about app permissions.
Endpoint
POST
https://www.wixapis.com/bookings/v2/resources/resource-types

Body Params
resourceTypeResourceTypeRequired

Resource type to create.

Response Object
resourceTypeResourceType

Created resource type.

Create a resource type.
Request
cURL
curl -X POST \ 'https://www.wixapis.com/bookings/v2/resources/resource-types' \ -H 'Authorization: <AUTH>' \ -d '{ "resourceType": { "name": "Meeting room" } }'
Response
JSON
{ "resourceType": { "id": "28221941-9d0d-4c91-806b-e2a08073d37a", "revision": "1", "createdDate": "2024-11-14T13:32:36.462Z", "updatedDate": "2024-11-14T13:32:36.462Z", "name": "Meeting room" } }
Errors
409Already Exists

There is 1 error with this status code.

429Resource Exhausted

There is 1 error with this status code.

This method may also return standard errors. Learn more about standard Wix errors.

Event TriggersThis method triggers the following events:
Did this help?