Trendsic Platform Service

<back to all web services

DispatchNoticeRequest

The following routes are available for this service:
GET,OPTIONS/v1/dispatch/notice/{Token}/json
import Foundation
import ServiceStack

public class DispatchNoticeRequest : Codable
{
    public var token:String

    required public init(){}
}

public class DispatchNoticeResponse : Codable
{
    public var refCode:String
    public var recipientName:String
    public var headline:String
    public var body:String
    public var affectedText:String
    public var originalWindow:String
    public var newWindow:String
    public var scopeLabel:String
    public var reason:String
    public var holdStatus:String
    public var resumesUtc:Date?
    public var acked:Bool
    public var invalid:Bool
    public var responseStatus:ResponseStatus

    required public init(){}
}


Swift DispatchNoticeRequest 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.

GET /v1/dispatch/notice/{Token}/json HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"RefCode":"String","RecipientName":"String","Headline":"String","Body":"String","AffectedText":"String","OriginalWindow":"String","NewWindow":"String","ScopeLabel":"String","Reason":"String","HoldStatus":"String","ResumesUtc":"0001-01-01T00:00:00.0000000","Acked":false,"Invalid":false,"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}