TicketUserServices

<back to all web services

EventEmailMessageCreateRequest

Requires Authentication
Requires any of the roles:Admin, TeamAdminRequired permission:Tickets.Add
The following routes are available for this service:
POST/EventEmailMessage
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports TicketUserServices.ServiceModel
Imports TicketUserServices.ServiceModel.Types

Namespace Global

    Namespace TicketUserServices.ServiceModel

        Public Partial Class EventEmailMessageCreateRequest
            Public Overridable Property Item As EventEmailMessage
        End Class

        Public Partial Class EventEmailMessageResult
            Public Overridable Property Item As EventEmailMessage
            Public Overridable Property StatusCode As Integer
            Public Overridable Property Message As String
        End Class
    End Namespace

    Namespace TicketUserServices.ServiceModel.Types

        Public Partial Class EventEmailMessage
            Public Overridable Property ID As Integer
            Public Overridable Property EventId As Integer
            Public Overridable Property OwnerId As Nullable(Of Integer)
            Public Overridable Property TicketTypeId As Nullable(Of Integer)
            Public Overridable Property MessageIs As String
            Public Overridable Property MessageEn As String
            Public Overridable Property IsActive As Boolean
            Public Overridable Property CreatedAt As Date
            Public Overridable Property UpdatedAt As Nullable(Of Date)
        End Class
    End Namespace
End Namespace

VB.NET EventEmailMessageCreateRequest DTOs

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.

POST /EventEmailMessage HTTP/1.1 
Host: stubbur-app.azurewebsites.net 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	item: 
	{
		id: 0,
		eventId: 0,
		ownerId: 0,
		ticketTypeId: 0,
		messageIs: String,
		messageEn: String,
		isActive: False,
		createdAt: 0001-01-01,
		updatedAt: 0001-01-01
	}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	item: 
	{
		id: 0,
		eventId: 0,
		ownerId: 0,
		ticketTypeId: 0,
		messageIs: String,
		messageEn: String,
		isActive: False,
		createdAt: 0001-01-01,
		updatedAt: 0001-01-01
	},
	statusCode: 0,
	message: String
}