GET | /services/{ServiceId}/nextfreetime | Get the next available time for the service | Get the next available time for the service |
---|
export class ExceptionText
{
public Reason: string;
public ReasonPublic: string;
public constructor(init?: Partial<ExceptionText>) { (Object as any).assign(this, init); }
}
export class AvailableTimesSum implements IAvailableTime
{
public From: string;
public To: string;
public Free: number;
public FreeSpots: number;
public ExceptionTexts: ExceptionText[];
public constructor(init?: Partial<AvailableTimesSum>) { (Object as any).assign(this, init); }
}
export class AvailableTimesResponse
{
public CompanyId: string;
public ServiceId: number;
public TimesFreeTextSingle: string;
public TimesFreeTextMultiple: string;
public Times: AvailableTimesSum[];
public constructor(init?: Partial<AvailableTimesResponse>) { (Object as any).assign(this, init); }
}
export class AvailableTimesResourceTypeResource
{
/** @description The resourcetype id */
// @ApiMember(Description="The resourcetype id")
public ResourceTypeId: number;
/** @description The resource id */
// @ApiMember(Description="The resource id")
public ResourceId: number;
public constructor(init?: Partial<AvailableTimesResourceTypeResource>) { (Object as any).assign(this, init); }
}
export class NextFreeTimeQuery implements IInterval
{
/** @description Company to show available time for */
// @ApiMember(Description="Company to show available time for", ParameterType="query")
public CompanyId?: string;
/** @description Service id */
// @ApiMember(Description="Service id", IsRequired=true, ParameterType="path")
public ServiceId: number;
/** @description From what datetime to search available times */
// @ApiMember(DataType="dateTime", Description="From what datetime to search available times", IsRequired=true, ParameterType="query")
public From: string;
/** @description To what datetime to show available times. Optional, if no datetime is set it will search one year */
// @ApiMember(DataType="dateTime", Description="To what datetime to show available times. Optional, if no datetime is set it will search one year", IsRequired=true, ParameterType="query")
public To: string;
/** @description Here you can select one of the resource in each resource type connected to the service, if none is selected it will show available times for all */
// @ApiMember(Description="Here you can select one of the resource in each resource type connected to the service, if none is selected it will show available times for all", ParameterType="query")
public Resources: AvailableTimesResourceTypeResource[];
/** @description Here you select number of resources to book (in each resource type). Default is 1. */
// @ApiMember(Description="Here you select number of resources to book (in each resource type). Default is 1.", ParameterType="query")
public NumberOfResources: number;
/** @description The duration you want to book. Needs to withing the service Min and Max. If not set it will use the service duration */
// @ApiMember(DataType="bool", Description="The duration you want to book. Needs to withing the service Min and Max. If not set it will use the service duration", ParameterType="query")
public Duration?: number;
/** @description If you want to include the connected resource types and resources */
// @ApiMember(Description="If you want to include the connected resource types and resources", ParameterType="query")
public ShowPerResource: boolean;
public constructor(init?: Partial<NextFreeTimeQuery>) { (Object as any).assign(this, init); }
}
TypeScript NextFreeTimeQuery DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /services/{ServiceId}/nextfreetime HTTP/1.1 Host: api.bokamera.se Accept: text/csv
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"ServiceId":0,"TimesFreeTextSingle":"String","TimesFreeTextMultiple":"String","Times":[{"Free":0,"FreeSpots":0}]}