POST | /scheduling/class-booking | Create a Class Booking | |
---|---|---|---|
POST | /v2/{ApiKey}/club/{StoreId}/booking | (obsolete) Create a Class Booking | |
POST | /v2/{ApiKey}/club/{StoreId}/class-booking | (obsolete) Create a Class Booking |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using ClubReady.Web.Api.Scheduling.Model;
using ClubReady.Core.Scheduling.Models.Dto.Requests;
using ClubReady.Core.Api.Models;
using ClubReady.Web.Api;
namespace ClubReady.Core.Api.Models
{
public partial class ApiDtoBase
{
public virtual string ApiKey { get; set; }
public virtual int? StoreId { get; set; }
public virtual int? ChainId { get; set; }
}
public partial class CreateClassBookingResponseDto
{
public virtual int? BookingId { get; set; }
public virtual string Message { get; set; }
}
}
namespace ClubReady.Core.Scheduling.Models.Dto.Requests
{
public partial class CreateClassBookingRequestDto
: ApiDtoBase
{
public virtual int UserId { get; set; }
public virtual int ScheduleId { get; set; }
public virtual bool AllowWaitList { get; set; }
}
}
namespace ClubReady.Web.Api
{
public enum RestrictedResourceType
{
Store,
Chain,
User,
Undefined,
}
}
namespace ClubReady.Web.Api.Scheduling.Model
{
public partial class CreateClassBookingRequest
: CreateClassBookingRequestDto, IRestrictedApiRequest
{
///<summary>
///Api Key - grants access to resources
///</summary>
[ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query")]
public virtual string ApiKey { get; set; }
///<summary>
///UserID
///</summary>
[ApiMember(DataType="string", Description="UserID", IsRequired=true, Name="UserId", ParameterType="query")]
public virtual int UserId { get; set; }
///<summary>
///Store ID
///</summary>
[ApiMember(DataType="integer", Description="Store ID", IsRequired=true, Name="StoreId", ParameterType="query")]
public virtual int? StoreId { get; set; }
///<summary>
///Class Schedule ID
///</summary>
[ApiMember(DataType="integer", Description="Class Schedule ID", IsRequired=true, Name="ScheduleId", ParameterType="query")]
public virtual int ScheduleId { get; set; }
///<summary>
///Put user in wait list when possible
///</summary>
[ApiMember(DataType="bool", Description="Put user in wait list when possible", Name="AllowWaitList", ParameterType="query")]
public virtual bool AllowWaitList { get; set; }
public virtual int? RestrictedId { get; set; }
public virtual RestrictedResourceType RestrictedResourceType { get; set; }
}
public partial class CreateClassBookingResponse
: CreateClassBookingResponseDto
{
public virtual int? BookingId { get; set; }
public virtual string Message { get; set; }
}
}
C# CreateClassBookingRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /scheduling/class-booking HTTP/1.1
Host: clubready.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"ApiKey":"String","UserId":0,"StoreId":0,"ScheduleId":0,"AllowWaitList":false,"RestrictedId":0,"RestrictedResourceType":"Store","ChainId":0}
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"BookingId":0,"Message":"String"}