BokaMera.API.Host

<back to all web services

DeleteMessageTemplate

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin
The following routes are available for this service:
DELETE/messages/templates/{Id}Delete an existing company message templatesDelete an existing company message templates.
DeleteMessageTemplate Parameters:
NameParameterData TypeRequiredDescription
CompanyIdqueryGuid?NoThe company id, if empty will use the company id for the user you are logged in with.
IdpathintYesThe message template id.
MessageTemplatesQueryResponse Parameters:
NameParameterData TypeRequiredDescription
IdformintNoThe message template id
NameformstringNoThe message template name.
TitleformstringNoThe message template title.
BodyformstringNoThe message template title.
SenderformstringNoThe message template sender (an email for message types with sendmethod 1, for SMS this cannot be set).
DefaultformboolNoIf the message template is the default message currently in use.
MessageTypeformMessageTypeQueryResponseNoIf the message type information.
LanguageformstringNoTemplate language.
ServicesformList<MessageServices>NoThe connected services which the template is valid for. If empty then it's valid for all services.
MessageTypeQueryResponse Parameters:
NameParameterData TypeRequiredDescription
IdformintNoThe message type id
NameformstringNoThe message type name.
DescriptionformstringNoThe message type description.
MaxCharactersformintNoThe maximum number of charachters that can be entered into message body using this type.
DefaultTextformstringNoThe default text that is always included when sending messages of this type.
SendMethodIdformintNoThe send method for this type. 1 = Email, 2 = SMS.
MessageServices Parameters:
NameParameterData TypeRequiredDescription
IdformintNo
NameformstringNoName of the service
ImageUrlformUriNoThe image url of the service

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

HTTP + JSV

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: testapi.bokamera.se 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Id: 0,
	Name: String,
	Title: String,
	Body: String,
	Sender: String,
	Default: False,
	MessageType: 
	{
		Id: 0,
		Name: String,
		Description: String,
		MaxCharacters: 0,
		DefaultText: String,
		SendMethodId: 0
	},
	Language: String,
	Services: 
	[
		{
			Id: 0,
			Name: String
		}
	]
}