BokaMera.API.Host

<back to all web services

CreateBookingUserQueue

The following routes are available for this service:
POST/bookinguserqueueJoin user to the booking queue
namespace BokaMera.API.ServiceModel.Dtos

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type BookingUserQueuePriceResponse() = 
        member val CompanyId:Guid = new Guid() with get,set
        member val Id:Int32 = new Int32() with get,set
        member val BookingUserQueueId:Int32 = new Int32() with get,set
        member val ServicePriceId:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val Quantity:Nullable<Int32> = new Nullable<Int32>() with get,set

    [<AllowNullLiteral>]
    type GroupBookingSettings() = 
        member val Active:Boolean = new Boolean() with get,set
        member val Min:Int32 = new Int32() with get,set
        member val Max:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type MultipleResourceSettings() = 
        member val Active:Boolean = new Boolean() with get,set
        member val Min:Int32 = new Int32() with get,set
        member val Max:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type ServiceInfoResponse() = 
        member val Id:Int32 = new Int32() with get,set
        member val Name:String = null with get,set
        member val Description:String = null with get,set
        member val ImageUrl:Uri = null with get,set
        member val LengthInMinutes:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val MaxNumberOfSpotsPerBooking:Int32 = new Int32() with get,set
        member val GroupBooking:GroupBookingSettings = null with get,set
        member val MultipleResource:MultipleResourceSettings = null with get,set
        member val IsGroupBooking:Boolean = new Boolean() with get,set
        member val IsPaymentEnabled:Boolean = new Boolean() with get,set

    [<AllowNullLiteral>]
    type CompanyInfoResponse() = 
        member val Id:Guid = new Guid() with get,set
        member val Name:String = null with get,set
        member val LogoType:Uri = null with get,set
        member val Category:String = null with get,set
        member val Street1:String = null with get,set
        member val Street2:String = null with get,set
        member val ZipCode:String = null with get,set
        member val City:String = null with get,set
        member val CountryId:String = null with get,set
        member val Longitude:String = null with get,set
        member val Latitude:String = null with get,set
        member val Phone:String = null with get,set
        member val Email:String = null with get,set
        member val HomePage:String = null with get,set
        member val SitePath:String = null with get,set

    [<AllowNullLiteral>]
    type BookingUserQueueItemResponse() = 
        member val BookingUserQueueId:Int32 = new Int32() with get,set
        member val CompanyId:Guid = new Guid() with get,set
        member val CustomerId:Guid = new Guid() with get,set
        member val ServiceId:Int32 = new Int32() with get,set
        member val From:DateTime = new DateTime() with get,set
        member val To:DateTime = new DateTime() with get,set
        member val StatusCode:Int32 = new Int32() with get,set
        member val StatusName:String = null with get,set
        member val SendConfirmationTime:Nullable<DateTime> = new Nullable<DateTime>() with get,set
        member val Quantities:ResizeArray<BookingUserQueuePriceResponse> = new ResizeArray<BookingUserQueuePriceResponse>() with get,set
        member val Service:ServiceInfoResponse = null with get,set
        member val Company:CompanyInfoResponse = null with get,set

    [<AllowNullLiteral>]
    type CustomerToBook() = 
        ///<summary>
        ///Customers firstname
        ///</summary>
        [<ApiMember(Description="Customers firstname", IsRequired=true)>]
        member val Firstname:String = null with get,set

        ///<summary>
        ///Customers lastname
        ///</summary>
        [<ApiMember(Description="Customers lastname", IsRequired=true)>]
        member val Lastname:String = null with get,set

        ///<summary>
        ///Customers email
        ///</summary>
        [<ApiMember(Description="Customers email", IsRequired=true)>]
        member val Email:String = null with get,set

        ///<summary>
        ///Customers phone number. Mobile phone number is required for SMS messages to be sent.
        ///</summary>
        [<ApiMember(Description="Customers phone number. Mobile phone number is required for SMS messages to be sent.", IsRequired=true)>]
        member val Phone:String = null with get,set

    [<AllowNullLiteral>]
    type QuantityToBook() = 
        ///<summary>
        ///If service has a price, enter the price id for that price. If no price exists for the service set 0 as PriceId. If you put 0 and a price exists, it will use that price (only works if just one price exists for the current selected date to book)
        ///</summary>
        [<ApiMember(Description="If service has a price, enter the price id for that price. If no price exists for the service set 0 as PriceId. If you put 0 and a price exists, it will use that price (only works if just one price exists for the current selected date to book)", IsRequired=true)>]
        member val PriceId:Int32 = new Int32() with get,set

        ///<summary>
        ///Set the number of spots or resources you want to book on the specific price category
        ///</summary>
        [<ApiMember(Description="Set the number of spots or resources you want to book on the specific price category", IsRequired=true)>]
        member val Quantity:Int32 = new Int32() with get,set

        ///<summary>
        ///If the quantity you add should occupy a spot. Default is true. If no it will only be a row that includes price information.
        ///</summary>
        [<ApiMember(Description="If the quantity you add should occupy a spot. Default is true. If no it will only be a row that includes price information.")>]
        member val OccupiesSpot:Boolean = new Boolean() with get,set

    [<AllowNullLiteral>]
    type CreateBookingUserQueue() = 
        member val CompanyId:Nullable<Guid> = new Nullable<Guid>() with get,set
        member val CustomerId:Nullable<Guid> = new Nullable<Guid>() with get,set
        member val Customer:CustomerToBook = null with get,set
        member val ServiceId:Int32 = new Int32() with get,set
        member val From:DateTime = new DateTime() with get,set
        member val To:DateTime = new DateTime() with get,set
        member val Quantities:ResizeArray<QuantityToBook> = new ResizeArray<QuantityToBook>() with get,set

F# CreateBookingUserQueue 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.

POST /bookinguserqueue HTTP/1.1 
Host: testapi.bokamera.se 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	CompanyId: 00000000-0000-0000-0000-000000000000,
	CustomerId: 00000000-0000-0000-0000-000000000000,
	Customer: 
	{
		Firstname: String,
		Lastname: String,
		Email: String,
		Phone: String
	},
	ServiceId: 0,
	Quantities: 
	[
		{
			PriceId: 0,
			Quantity: 0,
			OccupiesSpot: False
		}
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	BookingUserQueueId: 0,
	ServiceId: 0,
	StatusCode: 0,
	StatusName: String,
	SendConfirmationTime: "0001-01-01T00:00:00",
	Quantities: 
	[
		{
			Id: 0,
			BookingUserQueueId: 0,
			ServicePriceId: 0,
			Quantity: 0
		}
	],
	Service: 
	{
		Id: 0,
		Name: String,
		Description: String,
		LengthInMinutes: 0,
		MaxNumberOfSpotsPerBooking: 0,
		GroupBooking: 
		{
			Active: False,
			Min: 0,
			Max: 0
		},
		MultipleResource: 
		{
			Active: False,
			Min: 0,
			Max: 0
		},
		IsGroupBooking: False,
		IsPaymentEnabled: False
	},
	Company: 
	{
		Name: String,
		Category: String,
		Street1: String,
		Street2: String,
		ZipCode: String,
		City: String,
		CountryId: String,
		Longitude: String,
		Latitude: String,
		Phone: String,
		Email: String,
		HomePage: String,
		SitePath: String
	}
}