Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
DELETE | /newsletter/templates/{Id} | Delete a company newsletter template. | Delete a company newsletter template. |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
CompanyId | query | 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. |
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 .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
DELETE /newsletter/templates/{Id} HTTP/1.1 Host: api.bokamera.se Accept: application/json
HTTP/1.1 200 OK Content-Type: application/json 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"}}