| Requires any of the roles: | Worker, Agent, Administrator |
| GET,OPTIONS | /v1/AssignedFactFinderCode |
|---|
namespace CRM.AgencyPlatform.API.Internal
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type FactFinderCodeSet() =
member val AgentId:Int32 = new Int32() with get,set
member val AgentName:String = null with get,set
member val TrackingNumber:String = null with get,set
member val ShipDate:String = null with get,set
member val CreatedDate:DateTime = new DateTime() with get,set
member val StartCode:Int32 = new Int32() with get,set
member val EndCode:Int32 = new Int32() with get,set
member val Count:Int32 = new Int32() with get,set
[<AllowNullLiteral>]
type AssignedFactFinderCodeResponse() =
member val ResponseStatus:ResponseStatus = null with get,set
member val Assigned:ResizeArray<FactFinderCodeSet> = new ResizeArray<FactFinderCodeSet>() with get,set
[<AllowNullLiteral>]
type AssignedFactFinderCodeRequest() =
class end
F# AssignedFactFinderCodeRequest 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.
GET /v1/AssignedFactFinderCode HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsonl
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"}},"Assigned":[{"AgentId":0,"AgentName":"String","TrackingNumber":"String","ShipDate":"String","CreatedDate":"0001-01-01T00:00:00.0000000","StartCode":0,"EndCode":0,"Count":0}]}