GET | /services/{ServiceId}/nextfreetime | Get the next available time for the service | Get the next available time for the service |
---|
"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 NextFreeTimeQuery {
/** @param {{CompanyId?:string,ServiceId?:number,From?:string,To?:string,Resources?:AvailableTimesResourceTypeResource[],NumberOfResources?:number,Duration?:number,ShowPerResource?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {?string}
* @description Company to show available time for */
CompanyId;
/**
* @type {number}
* @description Service id */
ServiceId;
/**
* @type {string}
* @description From what datetime to search available times */
From;
/**
* @type {string}
* @description To what datetime to show available times. Optional, if no datetime is set it will search one year */
To;
/**
* @type {AvailableTimesResourceTypeResource[]}
* @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 */
Resources;
/**
* @type {number}
* @description Here you select number of resources to book (in each resource type). Default is 1. */
NumberOfResources;
/**
* @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 {boolean}
* @description If you want to include the connected resource types and resources */
ShowPerResource;
}
JavaScript NextFreeTimeQuery DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
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: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <AvailableTimesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId> <ServiceId>0</ServiceId> <Times> <AvailableTimesSum> <ExceptionTexts i:nil="true" /> <Free>0</Free> <FreeSpots>0</FreeSpots> <From>0001-01-01T00:00:00</From> <To>0001-01-01T00:00:00</To> </AvailableTimesSum> </Times> <TimesFreeTextMultiple>String</TimesFreeTextMultiple> <TimesFreeTextSingle>String</TimesFreeTextSingle> </AvailableTimesResponse>