| Requires any of the roles: | bookingsupplier-administrator-write, superadmin | 
| PUT | /resourcetypes/{Id}/updateresourcepriority | Update resource(s) priority within the ResourceType | Updates resource(s) priority in the ResourceType for the currently logged in user, only administrators are allowed to update ResourceTypes. | 
|---|
| Name | Parameter | Data Type | Required | Description | 
|---|---|---|---|---|
| CompanyId | body | Guid | Yes | The company id | 
| Id | path | int | Yes | The ResourceType id | 
| Resources | body | List<UpdateResourceTypeResource> | Yes | The resources to have their priorities to be updated | 
| Name | Parameter | Data Type | Required | Description | 
|---|---|---|---|---|
| Id | form | int | No | The resource id | 
| Priority | form | int | No | The priority of the resource | 
| Name | Parameter | Data Type | Required | Description | 
|---|---|---|---|---|
| Id | form | int | No | The resourcetype id | 
| Name | form | string | Yes | The resourcetype name | 
| Description | form | string | Yes | The resourcetype description | 
| Resources | form | List<ResourceTypeResource> | Yes | The resources in the resourcetype. Only shows active resources if not admin. | 
| Active | form | bool | No | If resourcetype is active or not | 
| Created | form | DateTime | No | The date when the resource was created | 
| Updated | form | DateTime | No | The date when the resource was updated | 
| Name | Parameter | Data Type | Required | Description | 
|---|---|---|---|---|
| Id | form | int | No | The resource id | 
| Name | form | string | Yes | The resource name | 
| Active | form | bool | No | The resource status | 
| Description | form | string | Yes | The resource description | 
| form | string | Yes | The resource email | |
| Phone | form | string | Yes | The resource phone | 
| Color | form | string | Yes | The resource color | 
| ImageUrl | form | Uri | Yes | The resource image | 
| Priority | form | int | No | The priority of the resource | 
| EmailNotification | form | bool | No | If the resource wants to receive Email notifications | 
| SMSNotification | form | bool | No | If the resource wants to receive SMS notifications | 
| EmailReminder | form | bool | No | If the resource wants to receive Email reminders | 
| SMSReminder | form | bool | No | If the resource wants to receive SMS reminders | 
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /resourcetypes/{Id}/updateresourcepriority HTTP/1.1 
Host: testapi.bokamera.se 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"Id":0,"Resources":[{"Id":0,"Priority":0}]}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"Id":0,"Name":"String","Description":"String","Resources":[{"Id":0,"Name":"String","Active":false,"Description":"String","Email":"String","Phone":"String","Color":"String","Priority":0,"EmailNotification":false,"SMSNotification":false,"EmailReminder":false,"SMSReminder":false}],"Active":false}