BokaMera.API.Host

<back to all web services

UpdateNewsletterTemplate

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin
The following routes are available for this service:
PUT/newsletter/templates/{Id}Update a company newsletter template.Update a company newsletter template.
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports BokaMera.API.ServiceModel.Dtos

Namespace Global

    Namespace BokaMera.API.ServiceModel.Dtos

        Public Partial Class NewsletterEmailTemplatesQueryResponse
            '''<Summary>
            '''The email template id
            '''</Summary>
            <ApiMember(Description:="The email template id")>
            Public Overridable Property Id As Integer

            '''<Summary>
            '''The email template name.
            '''</Summary>
            <ApiMember(Description:="The email template name.")>
            Public Overridable Property Name As String

            '''<Summary>
            '''The email template description.
            '''</Summary>
            <ApiMember(Description:="The email template description.")>
            Public Overridable Property Description As String

            '''<Summary>
            '''The email template html content.
            '''</Summary>
            <ApiMember(Description:="The email template html content.")>
            Public Overridable Property Body As String
        End Class

        Public Partial Class NewsletterSendMethodQueryResponse
            '''<Summary>
            '''The send method id
            '''</Summary>
            <ApiMember(Description:="The send method id")>
            Public Overridable Property Id As Integer

            '''<Summary>
            '''The send method name.
            '''</Summary>
            <ApiMember(Description:="The send method name.")>
            Public Overridable Property Name As String

            '''<Summary>
            '''The send method description.
            '''</Summary>
            <ApiMember(Description:="The send method description.")>
            Public Overridable Property Description As String
        End Class

        Public Partial Class NewsletterTemplatesQueryResponse
            '''<Summary>
            '''The newsletter template id
            '''</Summary>
            <ApiMember(Description:="The newsletter template id")>
            Public Overridable Property Id As Integer

            '''<Summary>
            '''The newsletter template heading.
            '''</Summary>
            <ApiMember(Description:="The newsletter template heading.")>
            Public Overridable Property Heading As String

            '''<Summary>
            '''The newsletter template body.
            '''</Summary>
            <ApiMember(Description:="The newsletter template body.")>
            Public Overridable Property Body As String

            '''<Summary>
            '''The email template the newsletter uses.
            '''</Summary>
            <ApiMember(Description:="The email template the newsletter uses.")>
            Public Overridable Property EmailTemplateId As Nullable(Of Integer)

            '''<Summary>
            '''Send Method. 1 = Email, 2 = SMS
            '''</Summary>
            <ApiMember(Description:="Send Method. 1 = Email, 2 = SMS")>
            Public Overridable Property SendMethodId As Integer

            '''<Summary>
            '''The newsletter template image url.
            '''</Summary>
            <ApiMember(Description:="The newsletter template image url.")>
            Public Overridable Property ImageUrl As String

            '''<Summary>
            '''The newsletter created date.
            '''</Summary>
            <ApiMember(Description:="The newsletter created date.")>
            Public Overridable Property Created As Date

            '''<Summary>
            '''Send method information.
            '''</Summary>
            <ApiMember(Description:="Send method information.")>
            Public Overridable Property SendMethodInformation As NewsletterSendMethodQueryResponse

            '''<Summary>
            '''Email template information.
            '''</Summary>
            <ApiMember(Description:="Email template information.")>
            Public Overridable Property EmailTemplateInformation As NewsletterEmailTemplatesQueryResponse
        End Class

        <ApiResponse(Description:="You were unauthorized to call this service", StatusCode:=401)>
        <ValidateRequest(Validator:="IsAuthenticated")>
        Public Partial Class UpdateNewsletterTemplate
            Implements ICompany
            '''<Summary>
            '''The company id, if empty will use the company id for the user you are logged in with.
            '''</Summary>
            <ApiMember(Description:="The company id, if empty will use the company id for the user you are logged in with.")>
            Public Overridable Property CompanyId As Nullable(Of Guid)

            '''<Summary>
            '''The newsletter template id.
            '''</Summary>
            <ApiMember(Description:="The newsletter template id.", IsRequired:=true, ParameterType:="path")>
            Public Overridable Property Id As Integer

            '''<Summary>
            '''The newsletter template heading.
            '''</Summary>
            <ApiMember(Description:="The newsletter template heading.")>
            Public Overridable Property Heading As String

            '''<Summary>
            '''The newsletter template body.
            '''</Summary>
            <ApiMember(Description:="The newsletter template body.")>
            Public Overridable Property Body As String

            '''<Summary>
            '''The newsletter template image url.
            '''</Summary>
            <ApiMember(Description:="The newsletter template image url.")>
            Public Overridable Property ImageUrl As String

            '''<Summary>
            '''The newsletter template send method (1=email, 2=sms).
            '''</Summary>
            <ApiMember(Description:="The newsletter template send method (1=email, 2=sms).")>
            Public Overridable Property SendMethodId As Nullable(Of Integer)

            '''<Summary>
            '''The email template id. Get valid email templates from GET /newsletter/emailtemplates
            '''</Summary>
            <ApiMember(Description:="The email template id. Get valid email templates from GET /newsletter/emailtemplates")>
            Public Overridable Property EmailTemplateId As Nullable(Of Integer)
        End Class
    End Namespace
End Namespace

VB.NET UpdateNewsletterTemplate DTOs

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

HTTP + OTHER

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: testapi.bokamera.se 
Accept: text/jsonl
Content-Type: text/jsonl
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/jsonl
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"}}