| POST,OPTIONS | /v1/dispatch/notice/{Token}/ack |
|---|
import Foundation
import ServiceStack
public class DispatchNoticeAckRequest : 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 DispatchNoticeAckRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/dispatch/notice/{Token}/ack HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"Token":"String"}
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"}}}