| GET | /campaign/inbox/form |
|---|
namespace digitaluapi.ServiceModel
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type CampaignActionFile() =
member val Name:String = null with get,set
member val FileType:String = null with get,set
member val FileSize:String = null with get,set
member val Extension:String = null with get,set
member val UploadUrl:String = null with get,set
[<AllowNullLiteral>]
type CampaignActionFormResults() =
member val CustomFormResults:String = null with get,set
member val Comments:String = null with get,set
member val CampaignActionFiles:ResizeArray<CampaignActionFile> = null with get,set
[<AllowNullLiteral>]
type GetCampaignActionClientFormDataResponse() =
member val FormMetaResponses:CampaignActionFormResults = null with get,set
member val ResponseStatus:ResponseStatus = null with get,set
[<AllowNullLiteral>]
type GetCampaignActionClientFormData() =
member val Id:Int64 = new Int64() with get,set
member val CommsGuid:Guid = new Guid() with get,set
member val CampaignActionsRequestsId:Int64 = new Int64() with get,set
F# GetCampaignActionClientFormData 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 /campaign/inbox/form HTTP/1.1 Host: duengageapi.uat.scadsoftware.com Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"FormMetaResponses":{"CustomFormResults":"String","Comments":"String","CampaignActionFiles":[{"Name":"String","FileType":"String","FileSize":"String","Extension":"String","UploadUrl":"String"}]},"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}