ClubReady Api

<back to all web services

BookingStatusUpdateRequest

The following routes are available for this service:
POST/scheduling/booking-status-updateUpdate a Booking Status
import java.math.*
import java.util.*
import net.servicestack.client.*


open class BookingStatusUpdateRequest : BookingStatusUpdateRequestDto(), IRestrictedApiRequest
{
    /**
    * Api Key - grants access to resources
    */
    @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query")
    var ApiKey:String? = null

    /**
    * StoreId
    */
    @ApiMember(DataType="string", Description="StoreId", IsRequired=true, Name="StoreId", ParameterType="query")
    var StoreId:Int? = null

    /**
    * UserID
    */
    @ApiMember(DataType="string", Description="UserID", IsRequired=true, Name="UserId", ParameterType="query")
    var UserId:Int? = null

    /**
    * Status ID
    */
    @ApiMember(DataType="integer", Description="Status ID", IsRequired=true, Name="StatusId", ParameterType="query")
    var StatusId:Int? = null

    /**
    * Booking ID
    */
    @ApiMember(DataType="integer", Description="Booking ID", IsRequired=true, Name="BookingId", ParameterType="query")
    var BookingId:Int? = null

    var RestrictedId:Int? = null
    var RestrictedResourceType:RestrictedResourceType? = null
}

open class BookingStatusUpdateRequestDto : ApiDtoBase()
{
    var UserId:Int? = null
    var StatusId:Int? = null
    var BookingId:Int? = null
}

open class ApiDtoBase
{
    var ApiKey:String? = null
    var StoreId:Int? = null
    var ChainId:Int? = null
}

enum class RestrictedResourceType
{
    Store,
    Chain,
    User,
    Undefined,
}

open class BookingStatusUpdateResponse : BookingStatusUpdateResponseDto()
{
    var Success:Boolean? = null
    var Message:String? = null
}

open class BookingStatusUpdateResponseDto
{
    var Success:Boolean? = null
    var Message:String? = null
}

Kotlin BookingStatusUpdateRequest 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 /scheduling/booking-status-update HTTP/1.1 
Host: www.clubready.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	ApiKey: String,
	StoreId: 0,
	UserId: 0,
	StatusId: 0,
	BookingId: 0,
	RestrictedId: 0,
	RestrictedResourceType: Store,
	ChainId: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Success: False,
	Message: String
}