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": "d32099bf-3371-4e87-9314-765a978b76a7"
}

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>d32099bf-3371-4e87-9314-765a978b76a7</MembershipID>
  <NotificationResults>sample string 2</NotificationResults>
  <Results>sample string 1</Results>
</SubmitFormResultsRequest>

Response Information

Response body formats

application/json, text/json

Sample:
{
  "FormResultsID": "f4c31624-9227-466d-8eed-291d51966a10",
  "FormID": "c8ab7505-4a16-441b-b2b6-b38dae745fbd",
  "SiteName": "jcrimieyewear",
  "FormName": "Contact - Basic",
  "Results": "<b>Name:</b> Silvia Brady<br/><b>Email:</b> [email protected]<br/><b>Phone:</b> 7029273233<br/><b>Department:</b> Billing<br/><b>Message:</b> I NEED TO TALK TO YOU IN REGARDS TO MY PRESCRIPTION .<br/><b>IP Address:</b> 2600:8801:297:6f00:70eb:ae5d:63fc:723",
  "CreatedTime": "2025-12-12T18:48:28.907-08: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>2025-12-13T02:48:28.907Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>-480</d2p1:OffsetMinutes>
  </CreatedTime>
  <FormID>c8ab7505-4a16-441b-b2b6-b38dae745fbd</FormID>
  <FormName>Contact - Basic</FormName>
  <FormResultsID>f4c31624-9227-466d-8eed-291d51966a10</FormResultsID>
  <MediaList />
  <MembershipID i:nil="true" />
  <OrderID i:nil="true" />
  <Results>&lt;b&gt;Name:&lt;/b&gt; Silvia Brady&lt;br/&gt;&lt;b&gt;Email:&lt;/b&gt; [email protected]&lt;br/&gt;&lt;b&gt;Phone:&lt;/b&gt; 7029273233&lt;br/&gt;&lt;b&gt;Department:&lt;/b&gt; Billing&lt;br/&gt;&lt;b&gt;Message:&lt;/b&gt; I NEED TO TALK TO YOU IN REGARDS TO MY PRESCRIPTION .&lt;br/&gt;&lt;b&gt;IP Address:&lt;/b&gt; 2600:8801:297:6f00:70eb:ae5d:63fc:723</Results>
  <SiteName>jcrimieyewear</SiteName>
  <SubmitProviderResponse i:nil="true" />
</FormResults>