| POST,OPTIONS | /v1/coverage/board/widen |
|---|
import Foundation
import ServiceStack
public class CoverageBoardWidenRequest : Codable
{
public var coverageGapId:Int
public var tier:String
required public init(){}
}
public class CoverageBoardActionResponse : Codable
{
public var responseStatus:ResponseStatus
public var success:Bool
public var coverageGapId:Int
public var notified:Int
required public init(){}
}
Swift CoverageBoardWidenRequest 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/coverage/board/widen HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"CoverageGapId":0,"Tier":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"Success":false,"CoverageGapId":0,"Notified":0}