POST api/Forms/SubmitResults

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": "8573d3a6-982e-483e-a357-9295a4973fd6"
}

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>8573d3a6-982e-483e-a357-9295a4973fd6</MembershipID>
  <NotificationResults>sample string 2</NotificationResults>
  <Results>sample string 1</Results>
</SubmitFormResultsRequest>

Response Information

Response body formats

application/json, text/json

Sample:
{
  "FormResultsID": "d43d79bc-c505-4764-a0fa-92fe4ca07e2a",
  "FormID": "c8ab7505-4a16-441b-b2b6-b38dae745fbd",
  "SiteName": "jcrimieyewear",
  "FormName": "Contact - Basic",
  "Results": "<b>Name:</b> Paula Main<br/><b>Email:</b> paulajmain@gmail.com<br/><b>Phone:</b> 7027554512<br/><b>Department:</b> Schedule Eye Exam<br/><b>IP Address:</b> 70.170.101.98",
  "CreatedTime": "2026-03-17T17:03:44.147-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-18T00:03:44.147Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>-420</d2p1:OffsetMinutes>
  </CreatedTime>
  <FormID>c8ab7505-4a16-441b-b2b6-b38dae745fbd</FormID>
  <FormName>Contact - Basic</FormName>
  <FormResultsID>d43d79bc-c505-4764-a0fa-92fe4ca07e2a</FormResultsID>
  <MediaList />
  <MembershipID i:nil="true" />
  <OrderID i:nil="true" />
  <Results>&lt;b&gt;Name:&lt;/b&gt; Paula Main&lt;br/&gt;&lt;b&gt;Email:&lt;/b&gt; paulajmain@gmail.com&lt;br/&gt;&lt;b&gt;Phone:&lt;/b&gt; 7027554512&lt;br/&gt;&lt;b&gt;Department:&lt;/b&gt; Schedule Eye Exam&lt;br/&gt;&lt;b&gt;IP Address:&lt;/b&gt; 70.170.101.98</Results>
  <SiteName>jcrimieyewear</SiteName>
  <SubmitProviderResponse i:nil="true" />
</FormResults>