BokaMera.API.Host

<back to all web services

UpdateMessageTemplate

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin
The following routes are available for this service:
PUT/messages/templates/{Id}Updates an existing company message templatesUpdate 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 UpdateMessageTemplate {
    /** @param {{CompanyId?:string,Id?:number,TypeId?:number,Default?:boolean,Name?:string,Title?:string,Body?:string,Sender?:string,Language?:string,Services?: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;
    /**
     * @type {?number}
     * @description The message type id. See GET /messages/templates/types  */
    TypeId;
    /**
     * @type {?boolean}
     * @description The message should be default and the one to be used. All other messages for the same message type will be set to Default = false */
    Default;
    /**
     * @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 {string}
     * @description Message template lanugage */
    Language;
    /**
     * @type {number[]}
     * @description The services that is connected to the template. If null it will be connected to all services. */
    Services;
}

JavaScript UpdateMessageTemplate DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

PUT /messages/templates/{Id} HTTP/1.1 
Host: testapi.bokamera.se 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<UpdateMessageTemplate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
  <Body>String</Body>
  <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
  <Default>false</Default>
  <Id>0</Id>
  <Language>String</Language>
  <Name>String</Name>
  <Sender>String</Sender>
  <Services xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>0</d2p1:int>
  </Services>
  <Title>String</Title>
  <TypeId>0</TypeId>
</UpdateMessageTemplate>
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>