Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
DELETE | /messages/templates/{Id} | Delete an existing company message templates | Delete an existing company message templates. |
---|
"use strict";
export class MessageTypeQueryResponse {
/** @param {{Id?:number,Name?:string,Description?:string,MaxCharacters?:number,DefaultText?:string,SendMethodId?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {number}
* @description The message type id */
Id;
/**
* @type {string}
* @description The message type name. */
Name;
/**
* @type {string}
* @description The message type description. */
Description;
/**
* @type {number}
* @description The maximum number of charachters that can be entered into message body using this type. */
MaxCharacters;
/**
* @type {string}
* @description The default text that is always included when sending messages of this type. */
DefaultText;
/**
* @type {number}
* @description The send method for this type. 1 = Email, 2 = SMS. */
SendMethodId;
}
export class MessageServices {
/** @param {{Id?:number,Name?:string,ImageUrl?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
Id;
/**
* @type {string}
* @description Name of the service */
Name;
/**
* @type {string}
* @description The image url of the service */
ImageUrl;
}
export class MessageTemplatesQueryResponse {
/** @param {{Id?:number,Name?:string,Title?:string,Body?:string,Sender?:string,Default?:boolean,MessageType?:MessageTypeQueryResponse,Language?:string,Services?:MessageServices[]}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {number}
* @description The message template id */
Id;
/**
* @type {string}
* @description The message template name. */
Name;
/**
* @type {string}
* @description The message template title. */
Title;
/**
* @type {string}
* @description The message template title. */
Body;
/**
* @type {string}
* @description The message template sender (an email for message types with sendmethod 1, for SMS this cannot be set). */
Sender;
/**
* @type {boolean}
* @description If the message template is the default message currently in use. */
Default;
/**
* @type {MessageTypeQueryResponse}
* @description If the message type information. */
MessageType;
/**
* @type {string}
* @description Template language. */
Language;
/**
* @type {MessageServices[]}
* @description The connected services which the template is valid for. If empty then it's valid for all services. */
Services;
}
export class DeleteMessageTemplate {
/** @param {{CompanyId?:string,Id?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {?string}
* @description The company id, if empty will use the company id for the user you are logged in with. */
CompanyId;
/**
* @type {number}
* @description The message template id. */
Id;
}
JavaScript DeleteMessageTemplate 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.
DELETE /messages/templates/{Id} HTTP/1.1 Host: api.bokamera.se Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <MessageTemplatesQueryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <Body>String</Body> <Default>false</Default> <Id>0</Id> <Language>String</Language> <MessageType> <DefaultText>String</DefaultText> <Description>String</Description> <Id>0</Id> <MaxCharacters>0</MaxCharacters> <Name>String</Name> <SendMethodId>0</SendMethodId> </MessageType> <Name>String</Name> <Sender>String</Sender> <Services> <MessageServices> <Id>0</Id> <ImageUrl i:nil="true" /> <Name>String</Name> </MessageServices> </Services> <Title>String</Title> </MessageTemplatesQueryResponse>