BokaMera.API.Host

<back to all web services

CreateMessageTemplate

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin
The following routes are available for this service:
POST/messages/templatesCreate a new company message templatesCreate a new company message templates.
import java.math.*
import java.util.*
import net.servicestack.client.*


@ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)
@ValidateRequest(Validator="IsAuthenticated")
open class CreateMessageTemplate : ICompany
{
    /**
    * The company id, if empty will use the company id for the user you are logged in with.
    */
    @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.")
    var CompanyId:UUID? = null

    /**
    * The message type id. See GET /messages/templates/types 
    */
    @ApiMember(Description="The message type id. See GET /messages/templates/types ", IsRequired=true)
    var TypeId:Int? = null

    /**
    * The message template name.
    */
    @ApiMember(Description="The message template name.", IsRequired=true)
    var Name:String? = null

    /**
    * The message template title.
    */
    @ApiMember(Description="The message template title.", IsRequired=true)
    var Title:String? = null

    /**
    * The message template title.
    */
    @ApiMember(Description="The message template title.", IsRequired=true)
    var Body:String? = null

    /**
    * The message template sender (an email for message types with sendmethod 1, for SMS this cannot be set).
    */
    @ApiMember(Description="The message template sender (an email for message types with sendmethod 1, for SMS this cannot be set).")
    var Sender:String? = null

    /**
    * Template Language sv / en
    */
    @ApiMember(Description="Template Language sv / en")
    var Language:String? = null

    /**
    * The services that is connected to the template. If null it will be connected to all services.
    */
    @ApiMember(Description="The services that is connected to the template. If null it will be connected to all services.")
    var Services:ArrayList<Int>? = null
}

open class MessageTemplatesQueryResponse
{
    /**
    * The message template id
    */
    @ApiMember(Description="The message template id")
    var Id:Int? = null

    /**
    * The message template name.
    */
    @ApiMember(Description="The message template name.")
    var Name:String? = null

    /**
    * The message template title.
    */
    @ApiMember(Description="The message template title.")
    var Title:String? = null

    /**
    * The message template title.
    */
    @ApiMember(Description="The message template title.")
    var Body:String? = null

    /**
    * The message template sender (an email for message types with sendmethod 1, for SMS this cannot be set).
    */
    @ApiMember(Description="The message template sender (an email for message types with sendmethod 1, for SMS this cannot be set).")
    var Sender:String? = null

    /**
    * If the message template is the default message currently in use.
    */
    @ApiMember(Description="If the message template is the default message currently in use.")
    var Default:Boolean? = null

    /**
    * If the message type information.
    */
    @ApiMember(Description="If the message type information.")
    var MessageType:MessageTypeQueryResponse? = null

    /**
    * Template language.
    */
    @ApiMember(Description="Template language.")
    var Language:String? = null

    /**
    * The connected services which the template is valid for. If empty then it's valid for all services.
    */
    @ApiMember(Description="The connected services which the template is valid for. If empty then it's valid for all services.")
    var Services:ArrayList<MessageServices> = ArrayList<MessageServices>()
}

open class MessageTypeQueryResponse
{
    /**
    * The message type id
    */
    @ApiMember(Description="The message type id")
    var Id:Int? = null

    /**
    * The message type name.
    */
    @ApiMember(Description="The message type name.")
    var Name:String? = null

    /**
    * The message type description.
    */
    @ApiMember(Description="The message type description.")
    var Description:String? = null

    /**
    * The maximum number of charachters that can be entered into message body using this type.
    */
    @ApiMember(Description="The maximum number of charachters that can be entered into message body using this type.")
    var MaxCharacters:Int? = null

    /**
    * The default text that is always included when sending messages of this type.
    */
    @ApiMember(Description="The default text that is always included when sending messages of this type.")
    var DefaultText:String? = null

    /**
    * The send method for this type. 1 = Email, 2 = SMS.
    */
    @ApiMember(Description="The send method for this type. 1 = Email, 2 = SMS.")
    var SendMethodId:Int? = null
}

open class MessageServices
{
    var Id:Int? = null
    /**
    * Name of the service
    */
    @ApiMember(Description="Name of the service")
    var Name:String? = null

    /**
    * The image url of the service
    */
    @ApiMember(Description="The image url of the service")
    var ImageUrl:Uri? = null
}

Kotlin CreateMessageTemplate 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.

POST /messages/templates HTTP/1.1 
Host: testapi.bokamera.se 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<CreateMessageTemplate 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>
  <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>
</CreateMessageTemplate>
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>