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": "4e7bc934-3573-477c-a485-38f0aabc3a81"
}

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>4e7bc934-3573-477c-a485-38f0aabc3a81</MembershipID>
  <NotificationResults>sample string 2</NotificationResults>
  <Results>sample string 1</Results>
</SubmitFormResultsRequest>

Response Information

Response body formats

application/json, text/json

Sample:
{
  "FormResultsID": "521e9183-dbcd-448b-8649-d11ae01b3cf0",
  "FormID": "7a978965-7d42-4b13-8936-57bbc3275fe3",
  "SiteName": "badmintonlasvegas",
  "FormName": "Contact - Basic",
  "Results": "<b>Name:</b> Eric LaRue<br/><b>Email:</b> safespace53078@gmail.com<br/><b>Message:</b> Hello! My son recently discovered badminton through his high school physical education class and wants to learn more. He is looking to take badminton lessons. However, a search for badminton in Las Vegas has only revealed this group as well as the (now defunct) Las Vegas Badminton Club. Do you know of any resources that he could take advantage of? Thank you for your assistance!<br/><b>IP Address:</b> 2600:8801:200:4db0:d3a:c464:96f4:8ae",
  "CreatedTime": "2026-03-02T15:48:43.783-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>2026-03-02T23:48:43.783Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>-480</d2p1:OffsetMinutes>
  </CreatedTime>
  <FormID>7a978965-7d42-4b13-8936-57bbc3275fe3</FormID>
  <FormName>Contact - Basic</FormName>
  <FormResultsID>521e9183-dbcd-448b-8649-d11ae01b3cf0</FormResultsID>
  <MediaList />
  <MembershipID i:nil="true" />
  <OrderID i:nil="true" />
  <Results>&lt;b&gt;Name:&lt;/b&gt; Eric LaRue&lt;br/&gt;&lt;b&gt;Email:&lt;/b&gt; safespace53078@gmail.com&lt;br/&gt;&lt;b&gt;Message:&lt;/b&gt; Hello! My son recently discovered badminton through his high school physical education class and wants to learn more. He is looking to take badminton lessons. However, a search for badminton in Las Vegas has only revealed this group as well as the (now defunct) Las Vegas Badminton Club. Do you know of any resources that he could take advantage of? Thank you for your assistance!&lt;br/&gt;&lt;b&gt;IP Address:&lt;/b&gt; 2600:8801:200:4db0:d3a:c464:96f4:8ae</Results>
  <SiteName>badmintonlasvegas</SiteName>
  <SubmitProviderResponse i:nil="true" />
</FormResults>