| GET,OPTIONS | /v1/field/application/prefill |
|---|
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 ApplicationProduct() =
member val MaterialID:Int32 = new Int32() with get,set
member val ProductName:String = null with get,set
member val EpaRegistrationNumber:String = null with get,set
member val IsRestrictedUse:Boolean = new Boolean() with get,set
member val SignalWord:String = null with get,set
member val ReEntryIntervalHours:Nullable<Int32> = new Nullable<Int32>() with get,set
member val DefaultRate:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val RateUnit:String = null with get,set
[<AllowNullLiteral>]
type ApplicationPrefillResponse() =
member val Products:ResizeArray<ApplicationProduct> = new ResizeArray<ApplicationProduct>() with get,set
member val ApplicatorContactID:Int32 = new Int32() with get,set
member val ApplicatorName:String = null with get,set
member val ApplicatorLicence:String = null with get,set
member val ResponseStatus:ResponseStatus = null with get,set
[<AllowNullLiteral>]
type ApplicationPrefillRequest() =
member val AgreementJobID:Int32 = new Int32() with get,set
member val JobID:Int32 = new Int32() with get,set
member val ProjectID:Int32 = new Int32() with get,set
F# ApplicationPrefillRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/field/application/prefill HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"Products":[{"MaterialID":0,"ProductName":"String","EpaRegistrationNumber":"String","IsRestrictedUse":false,"SignalWord":"String","ReEntryIntervalHours":0,"DefaultRate":0,"RateUnit":"String"}],"ApplicatorContactID":0,"ApplicatorName":"String","ApplicatorLicence":"String","ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}