Class FormSubmissionEntity
Content of a Form submission
Carrier object for FormSubmissionEntity. Services for the FormSubmissionEntity Carrier is available from the IMarketingAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class FormSubmissionEntity : Carrier
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
Constructors
FormSubmissionEntity()
Default constructor
Declaration
public FormSubmissionEntity()
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
Properties
ContactId
The optional id of the contact of the person who submitted.
Declaration
public virtual int ContactId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
EmailAddress
The email address of the person who submitted
Declaration
public virtual string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
String |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
FormId
The id of the parent form.
Declaration
public virtual int FormId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
FormSubmissionId
Primary key
Declaration
public virtual int FormSubmissionId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
PersonId
The optional id of the person who submitted.
Declaration
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
ProcessingLog
A log of what happened during processing
Declaration
public virtual string ProcessingLog { get; set; }
Property Value
Type | Description |
---|---|
String |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
Response
The JSON-formatted response from this form
Declaration
public virtual string Response { get; set; }
Property Value
Type | Description |
---|---|
String |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
ResponseShipmentAddrId
The id of the s_shipment_addr that is the response mail
Declaration
public virtual int ResponseShipmentAddrId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
Status
What is the status of this submission
Declaration
public virtual FormSubmissionStatus Status { get; set; }
Property Value
Type | Description |
---|---|
FormSubmissionStatus |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
WhenSubmitted
The time of the submit.
Declaration
public virtual DateTime WhenSubmitted { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
See Also
ToString(String)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}