| Requires any of the roles: | Worker, Agent, Administrator |
| POST,OPTIONS | /v1/Contact/{ContactId}/Application |
|---|
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 ContactActivityResponse() =
member val ResponseStatus:ResponseStatus = null with get,set
member val data:ResizeArray<Object> = new ResizeArray<Object>() with get,set
[<AllowNullLiteral>]
type ActivityTracker_Application() =
member val ContactName:String = null with get,set
member val Carriers:String = null with get,set
member val ApplicationId:Int32 = new Int32() with get,set
member val ContactId:Int32 = new Int32() with get,set
member val LifeAP:Decimal = new Decimal() with get,set
member val AnnuityFlow:Decimal = new Decimal() with get,set
member val AnnuityTransfer:Decimal = new Decimal() with get,set
member val DateCreated:DateTime = new DateTime() with get,set
[<AllowNullLiteral>]
type ContactApplicationRequest() =
member val ContactId:Int32 = new Int32() with get,set
member val Application:ActivityTracker_Application = null with get,set
F# ContactApplicationRequest 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 /v1/Contact/{ContactId}/Application HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ContactId: 0,
Application:
{
ContactName: String,
Carriers: String,
ApplicationId: 0,
ContactId: 0,
LifeAP: 0,
AnnuityFlow: 0,
AnnuityTransfer: 0,
DateCreated: 0001-01-01
}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
data:
[
{
}
]
}