Required role: | API |
All Verbs | /api/Query/MessageTemplate |
---|
import Foundation
import ServiceStack
// @AutoQueryViewer(Description="", IconUrl="octicon:database", Title="MessageTemplate")
public class FindMessageTemplate : QueryDb<MessageTemplateInstance>
{
required public init(){ super.init() }
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
}
}
public class MessageTemplateInstance : Codable
{
public var messageTemplateId:Int?
public var name:String?
public var subject:String?
public var body:String?
public var reportId:Int?
public var templateType:Int?
public var created:Date?
public var createdBy:Int?
public var modified:Date?
public var modifiedBy:Int?
public var deleted:Date?
public var deletedBy:Int?
public var eventType:Int?
public var contentType:Int?
public var hidden:Bool?
public var parentMessageTemplateId:Int?
public var inclusionTags:String?
public var exclusionTags:String?
required public init(){}
}
Swift FindMessageTemplate DTOs
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.
POST /api/Query/MessageTemplate HTTP/1.1
Host: api.clubmanagercentral.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
Skip: 0,
Take: 0,
OrderBy: String,
OrderByDesc: String,
Include: String,
Fields: String,
Meta:
{
String: String
}
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { Offset: 0, Total: 0, Results: [ { MessageTemplateId: 0, Name: String, Subject: String, Body: String, ReportId: 0, TemplateType: 0, Created: 0001-01-01, CreatedBy: 0, Modified: 0001-01-01, ModifiedBy: 0, Deleted: 0001-01-01, DeletedBy: 0, EventType: 0, ContentType: 0, Hidden: False, ParentMessageTemplateId: 0, InclusionTags: String, ExclusionTags: String } ], Meta: { String: String }, ResponseStatus: { ErrorCode: String, Message: String, StackTrace: String, Errors: [ { ErrorCode: String, FieldName: String, Message: String, Meta: { String: String } } ], Meta: { String: String } } }