Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
PUT | /newsletter/templates/{Id} | Update a company newsletter template. | Update a company newsletter template. |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
CompanyId | body | Guid? | No | The company id, if empty will use the company id for the user you are logged in with. |
Id | path | int | Yes | The newsletter template id. |
Heading | body | string | No | The newsletter template heading. |
Body | body | string | No | The newsletter template body. |
ImageUrl | body | string | No | The newsletter template image url. |
SendMethodId | body | int? | No | The newsletter template send method (1=email, 2=sms). |
EmailTemplateId | body | int? | No | The email template id. Get valid email templates from GET /newsletter/emailtemplates |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | int | No | The newsletter template id |
Heading | form | string | No | The newsletter template heading. |
Body | form | string | No | The newsletter template body. |
EmailTemplateId | form | int? | No | The email template the newsletter uses. |
SendMethodId | form | int | No | Send Method. 1 = Email, 2 = SMS |
ImageUrl | form | string | No | The newsletter template image url. |
Created | form | DateTime | No | The newsletter created date. |
SendMethodInformation | form | NewsletterSendMethodQueryResponse | No | Send method information. |
EmailTemplateInformation | form | NewsletterEmailTemplatesQueryResponse | No | Email template information. |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | int | No | The send method id |
Name | form | string | No | The send method name. |
Description | form | string | No | The send method description. |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | int | No | The email template id |
Name | form | string | No | The email template name. |
Description | form | string | No | The email template description. |
Body | form | string | No | The email template html content. |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /newsletter/templates/{Id} HTTP/1.1
Host: api.bokamera.se
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
CompanyId: 00000000-0000-0000-0000-000000000000,
Id: 0,
Heading: String,
Body: String,
ImageUrl: String,
SendMethodId: 0,
EmailTemplateId: 0
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { Id: 0, Heading: String, Body: String, EmailTemplateId: 0, SendMethodId: 0, ImageUrl: String, SendMethodInformation: { Id: 0, Name: String, Description: String }, EmailTemplateInformation: { Id: 0, Name: String, Description: String, Body: String } }