POST webapi/root/Forms

Submits form results to the Site's current form. Scope Site.Name:{SiteName} must be granted to retrieve the information (in other words - results can only be submitted within the scope of a single Site).

Request Information

Parameters

NameDescriptionAdditional information
results
Forms results to submit.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Results": "sample string 1",
  "NotificationResults": "sample string 2",
  "MembershipID": "52066a0e-eb7b-4760-89bf-a6f3d550476f"
}

application/xml, text/xml

Sample:
<SubmitFormResultsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoNET.WebAPI.Logic.Models">
  <MembershipID>52066a0e-eb7b-4760-89bf-a6f3d550476f</MembershipID>
  <NotificationResults>sample string 2</NotificationResults>
  <Results>sample string 1</Results>
</SubmitFormResultsRequest>

Response Information

Response body formats

application/json, text/json

Sample:
{
  "FormResultsID": "b33ae17f-98cd-4f6e-97ff-c4fb161fa860",
  "FormID": "09668fcd-472a-4f09-a679-a029c0c743df",
  "SiteName": "sonvcoc",
  "FormName": "Contact - Basic",
  "Results": "<b>First and Last Name:</b> Lamar Penn<br/><b>Email:</b> [email protected]<br/><b>Phone:</b> 7026645081<br/><b>Message:</b> Hello, I’m a Clark County resident who would like to get information on being heard at a board meeting to approve a new MC here in the valley. Can some contact me about the process and requirements? Thanks<br/><b>IP Address:</b> 2600:8801:1398:2e00:c87:e37:3c52:813f",
  "CreatedTime": "2026-03-09T21:03:53.477-07:00",
  "Approved": null,
  "ApprovalNote": null,
  "MembershipID": null,
  "SubmitProviderResponse": null,
  "OrderID": null,
  "MediaList": []
}

application/xml, text/xml

Sample:
<FormResults xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MediaLibrarianCore">
  <ApprovalNote i:nil="true" />
  <Approved i:nil="true" />
  <CreatedTime xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2026-03-10T04:03:53.477Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>-420</d2p1:OffsetMinutes>
  </CreatedTime>
  <FormID>09668fcd-472a-4f09-a679-a029c0c743df</FormID>
  <FormName>Contact - Basic</FormName>
  <FormResultsID>b33ae17f-98cd-4f6e-97ff-c4fb161fa860</FormResultsID>
  <MediaList />
  <MembershipID i:nil="true" />
  <OrderID i:nil="true" />
  <Results>&lt;b&gt;First and Last Name:&lt;/b&gt; Lamar Penn&lt;br/&gt;&lt;b&gt;Email:&lt;/b&gt; [email protected]&lt;br/&gt;&lt;b&gt;Phone:&lt;/b&gt; 7026645081&lt;br/&gt;&lt;b&gt;Message:&lt;/b&gt; Hello, I’m a Clark County resident who would like to get information on being heard at a board meeting to approve a new MC here in the valley. Can some contact me about the process and requirements? Thanks&lt;br/&gt;&lt;b&gt;IP Address:&lt;/b&gt; 2600:8801:1398:2e00:c87:e37:3c52:813f</Results>
  <SiteName>sonvcoc</SiteName>
  <SubmitProviderResponse i:nil="true" />
</FormResults>