| GET | /campaign/actionform | Get Campaign Action 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 FormFieldOption() =
member val Value:String = null with get,set
member val Label:String = null with get,set
[<AllowNullLiteral>]
type FormField() =
member val Id:Int32 = new Int32() with get,set
member val ControlType:String = null with get,set
member val Label:String = null with get,set
member val Placeholder:String = null with get,set
member val Help:String = null with get,set
member val Name:String = null with get,set
member val SortOrder:Int32 = new Int32() with get,set
member val Options:ResizeArray<FormFieldOption> = null with get,set
member val Validation:ResizeArray<String> = null with get,set
[<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 CampaignActions() =
[<DataMember(Order=1)>]
[<Required>]
member val Id:Int64 = new Int64() with get,set
[<DataMember(Order=2)>]
[<Required>]
[<References(typeof<Campaigns>)>]
member val CampaignsId:Int64 = new Int64() with get,set
[<DataMember(Order=3)>]
[<References(typeof<Actions>)>]
member val ActionsId:Nullable<Int64> = new Nullable<Int64>() with get,set
[<DataMember(Order=4)>]
member val ButtonName:String = null with get,set
[<DataMember(Order=5)>]
[<References(typeof<ActionTypes>)>]
member val ActionTypesId:Nullable<Int32> = new Nullable<Int32>() with get,set
[<DataMember(Order=6)>]
member val Description:String = null with get,set
[<DataMember(Order=7)>]
member val OfferOrder:Nullable<Int16> = new Nullable<Int16>() with get,set
[<DataMember(Order=8)>]
member val StandOut:Nullable<Boolean> = new Nullable<Boolean>() with get,set
[<DataMember(Order=9)>]
[<Required>]
member val PublicAccessGuid:Guid = new Guid() with get,set
[<DataMember(Order=10)>]
member val FormMeta:ResizeArray<FormField> = null with get,set
[<DataMember(Order=11)>]
member val Files:ResizeArray<CampaignActionFile> = null with get,set
[<DataMember(Order=12)>]
member val SentToEmailAddress:String = null with get,set
[<DataMember(Order=13)>]
member val CcEmailAddress:String = null with get,set
[<AllowNullLiteral>]
type GetCampaignActionFormResponse() =
member val campaignAction:CampaignActions = null with get,set
member val ResponseStatus:ResponseStatus = null with get,set
[<AllowNullLiteral>]
type GetCampaignActionForm() =
[<DataMember(Order=1)>]
[<Validate(Validator="NotNull")>]
member val CampaignsId:Int64 = new Int64() with get,set
member val CampaignActionsId:Int64 = new Int64() with get,set
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /campaign/actionform HTTP/1.1 Host: duengageapi.uat.scadsoftware.com Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<GetCampaignActionFormResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/digitaluapi.ServiceModel">
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
<d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</d2p1:Meta>
</d2p1:ResponseError>
</d2p1:Errors>
<d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</d2p1:Meta>
</ResponseStatus>
<campaignAction xmlns:d2p1="http://schemas.datacontract.org/2004/07/digitaluapi.ServiceModel.Types">
<d2p1:ActionTypesId>0</d2p1:ActionTypesId>
<d2p1:ActionsId>0</d2p1:ActionsId>
<d2p1:ButtonName>String</d2p1:ButtonName>
<d2p1:CampaignsId>0</d2p1:CampaignsId>
<d2p1:CcEmailAddress>String</d2p1:CcEmailAddress>
<d2p1:Description>String</d2p1:Description>
<d2p1:Files>
<CampaignActionFile>
<Extension>String</Extension>
<FileSize>String</FileSize>
<FileType>String</FileType>
<Name>String</Name>
<UploadUrl>String</UploadUrl>
</CampaignActionFile>
</d2p1:Files>
<d2p1:FormMeta>
<FormField>
<ControlType>String</ControlType>
<Help>String</Help>
<Id>0</Id>
<Label>String</Label>
<Name>String</Name>
<Options>
<FormFieldOption>
<Label>String</Label>
<Value>String</Value>
</FormFieldOption>
</Options>
<Placeholder>String</Placeholder>
<SortOrder>0</SortOrder>
<Validation xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:string>String</d5p1:string>
</Validation>
</FormField>
</d2p1:FormMeta>
<d2p1:Id>0</d2p1:Id>
<d2p1:OfferOrder>0</d2p1:OfferOrder>
<d2p1:PublicAccessGuid>00000000-0000-0000-0000-000000000000</d2p1:PublicAccessGuid>
<d2p1:SentToEmailAddress>String</d2p1:SentToEmailAddress>
<d2p1:StandOut>false</d2p1:StandOut>
</campaignAction>
</GetCampaignActionFormResponse>