GET | /services/{ServiceId}/availabletimes | Get availabletimes for the service | Get availabletimes for the service and it's connected schedules |
---|
"use strict";
export class ExceptionText {
/** @param {{Reason?:string,ReasonPublic?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
Reason;
/** @type {string} */
ReasonPublic;
}
export class AvailableTimesSum {
/** @param {{From?:string,To?:string,Free?:number,FreeSpots?:number,ExceptionTexts?:ExceptionText[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
From;
/** @type {string} */
To;
/** @type {number} */
Free;
/** @type {number} */
FreeSpots;
/** @type {ExceptionText[]} */
ExceptionTexts;
}
export class AvailableTimesResponse {
/** @param {{CompanyId?:string,ServiceId?:number,TimesFreeTextSingle?:string,TimesFreeTextMultiple?:string,Times?:AvailableTimesSum[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
CompanyId;
/** @type {number} */
ServiceId;
/** @type {string} */
TimesFreeTextSingle;
/** @type {string} */
TimesFreeTextMultiple;
/** @type {AvailableTimesSum[]} */
Times;
}
export class AvailableTimesResourceTypeResource {
/** @param {{ResourceTypeId?:number,ResourceId?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {number}
* @description The resourcetype id */
ResourceTypeId;
/**
* @type {number}
* @description The resource id */
ResourceId;
}
export class AvailableTimesQuery {
/** @param {{CompanyId?:string,ServiceId?:number,From?:string,To?:string,Resources?:AvailableTimesResourceTypeResource[],NumberOfResources?:number,ShowPerResource?:boolean,InsideSearchInterval?:boolean,Duration?:number,ResponseStatus?:ResponseStatus}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {?string}
* @description Company to show services for */
CompanyId;
/**
* @type {number}
* @description Service id */
ServiceId;
/**
* @type {string}
* @description From what datetime to show available times */
From;
/**
* @type {string}
* @description To what datetime to show available times */
To;
/**
* @type {AvailableTimesResourceTypeResource[]}
* @description Here you can select one of the resource in each resourcetype connected to the service, if none is selected it will show available times for all */
Resources;
/**
* @type {number}
* @description Here you select number of resources to book (in each resourcetype). Default is 1. */
NumberOfResources;
/**
* @type {boolean}
* @description If you want to include the connected resource types and resources */
ShowPerResource;
/**
* @type {boolean}
* @description Both start and time time should be inside test interval. Default is false which means only start time needs to be inside. */
InsideSearchInterval;
/**
* @type {?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 */
Duration;
/** @type {ResponseStatus} */
ResponseStatus;
}
JavaScript AvailableTimesQuery DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /services/{ServiceId}/availabletimes HTTP/1.1 Host: api.bokamera.se Accept: text/jsv
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { ServiceId: 0, TimesFreeTextSingle: String, TimesFreeTextMultiple: String, Times: [ { Free: 0, FreeSpots: 0 } ] }