BokaMera.API.Host

<back to all web services

UpdateResourcePriority

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin
The following routes are available for this service:
PUT/resourcetypes/{Id}/updateresourcepriorityUpdate resource(s) priority within the ResourceTypeUpdates resource(s) priority in the ResourceType for the currently logged in user, only administrators are allowed to update ResourceTypes.
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports BokaMera.API.ServiceModel.Dtos

Namespace Global

    Namespace BokaMera.API.ServiceModel.Dtos

        Public Partial Class ResourceTypeQueryResponse
            Public Sub New()
                Resources = New List(Of ResourceTypeResource)
            End Sub

            '''<Summary>
            '''The resourcetype id
            '''</Summary>
            <ApiMember(Description:="The resourcetype id")>
            Public Overridable Property Id As Integer

            '''<Summary>
            '''The resourcetype name
            '''</Summary>
            <ApiMember(Description:="The resourcetype name")>
            Public Overridable Property Name As String

            '''<Summary>
            '''The resourcetype description
            '''</Summary>
            <ApiMember(Description:="The resourcetype description")>
            Public Overridable Property Description As String

            '''<Summary>
            '''The resources in the resourcetype. Only shows active resources if not admin.
            '''</Summary>
            <ApiMember(Description:="The resources in the resourcetype. Only shows active resources if not admin.")>
            Public Overridable Property Resources As List(Of ResourceTypeResource)

            '''<Summary>
            '''If resourcetype is active or not
            '''</Summary>
            <ApiMember(Description:="If resourcetype is active or not")>
            Public Overridable Property Active As Boolean

            '''<Summary>
            '''Then date when the resource was created
            '''</Summary>
            <ApiMember(Description:="Then date when the resource was created")>
            Public Overridable Property Created As Date

            '''<Summary>
            '''Then date when the resource was updated
            '''</Summary>
            <ApiMember(Description:="Then date when the resource was updated")>
            Public Overridable Property Updated As Date
        End Class

        Public Partial Class ResourceTypeResource
            '''<Summary>
            '''The resource id
            '''</Summary>
            <ApiMember(Description:="The resource id")>
            Public Overridable Property Id As Integer

            '''<Summary>
            '''The resource name
            '''</Summary>
            <ApiMember(Description:="The resource name")>
            Public Overridable Property Name As String

            '''<Summary>
            '''The resource status
            '''</Summary>
            <ApiMember(Description:="The resource status")>
            Public Overridable Property Active As Boolean

            '''<Summary>
            '''The resource description
            '''</Summary>
            <ApiMember(Description:="The resource description")>
            Public Overridable Property Description As String

            '''<Summary>
            '''The resource email
            '''</Summary>
            <ApiMember(Description:="The resource email")>
            Public Overridable Property Email As String

            '''<Summary>
            '''The resource phone
            '''</Summary>
            <ApiMember(Description:="The resource phone")>
            Public Overridable Property Phone As String

            '''<Summary>
            '''The resource color
            '''</Summary>
            <ApiMember(Description:="The resource color")>
            Public Overridable Property Color As String

            '''<Summary>
            '''The resource image
            '''</Summary>
            <ApiMember(Description:="The resource image")>
            Public Overridable Property ImageUrl As Uri

            '''<Summary>
            '''The priority of the resource
            '''</Summary>
            <ApiMember(Description:="The priority of the resource")>
            Public Overridable Property Priority As Integer

            '''<Summary>
            '''If the resource want to receive email notifications
            '''</Summary>
            <ApiMember(Description:="If the resource want to receive email notifications")>
            Public Overridable Property EmailNotification As Boolean

            '''<Summary>
            '''If the resource want to receive sms notifications
            '''</Summary>
            <ApiMember(Description:="If the resource want to receive sms notifications")>
            Public Overridable Property SMSNotification As Boolean

            '''<Summary>
            '''If the resource want to receive email reminders
            '''</Summary>
            <ApiMember(Description:="If the resource want to receive email reminders")>
            Public Overridable Property EmailReminder As Boolean

            '''<Summary>
            '''If the resource want to receive sms reminders
            '''</Summary>
            <ApiMember(Description:="If the resource want to receive sms reminders")>
            Public Overridable Property SMSReminder As Boolean
        End Class

        <ValidateRequest(Validator:="IsAuthenticated")>
        Public Partial Class UpdateResourcePriority
            Public Sub New()
                Resources = New List(Of UpdateResourceTypeResource)
            End Sub

            '''<Summary>
            '''The company id
            '''</Summary>
            <ApiMember(Description:="The company id", IsRequired:=true)>
            Public Overridable Property CompanyId As Guid

            '''<Summary>
            '''The ResourceType id
            '''</Summary>
            <ApiMember(Description:="The ResourceType id", IsRequired:=true, ParameterType:="path")>
            Public Overridable Property Id As Integer

            '''<Summary>
            '''The resources to have their priorities to be updated 
            '''</Summary>
            <ApiMember(Description:="The resources to have their priorities to be updated ")>
            Public Overridable Property Resources As List(Of UpdateResourceTypeResource)
        End Class

        Public Partial Class UpdateResourceTypeResource
            '''<Summary>
            '''The resource id
            '''</Summary>
            <ApiMember(Description:="The resource id")>
            Public Overridable Property Id As Integer

            '''<Summary>
            '''The priority of the resource
            '''</Summary>
            <ApiMember(Description:="The priority of the resource")>
            Public Overridable Property Priority As Integer
        End Class
    End Namespace
End Namespace

VB.NET UpdateResourcePriority DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

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/jsv
Content-Type: text/jsv
Content-Length: length

{
	Id: 0,
	Resources: 
	[
		{
			Id: 0,
			Priority: 0
		}
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
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
}