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
| Name | Description | Additional 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": "60cddf98-fdd0-4f74-80a8-4cb1bb756a40"
}
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>60cddf98-fdd0-4f74-80a8-4cb1bb756a40</MembershipID> <NotificationResults>sample string 2</NotificationResults> <Results>sample string 1</Results> </SubmitFormResultsRequest>
Response Information
Response body formats
application/json, text/json
Sample:
{
"FormResultsID": "d9d8fcaf-3acf-4ed3-a9f2-e77f0e9f066e",
"FormID": "ab809dca-e604-4be9-ad30-5dd19cdc0c62",
"SiteName": "craftingcheetah",
"FormName": "Contact - Basic",
"Results": "<b>Name:</b> Elizabeth DePasquale<br/><b>Email:</b> [email protected]<br/><b>Message:</b> Good morning, are you available for a birthday party this Saturday 12/13, at noon? Thank you, Elizabeth<br/><br/><b>IP Address:</b> 68.229.28.185",
"CreatedTime": "2025-12-06T08:00:23.303-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-06T16:00:23.303Z</d2p1:DateTime>
<d2p1:OffsetMinutes>-480</d2p1:OffsetMinutes>
</CreatedTime>
<FormID>ab809dca-e604-4be9-ad30-5dd19cdc0c62</FormID>
<FormName>Contact - Basic</FormName>
<FormResultsID>d9d8fcaf-3acf-4ed3-a9f2-e77f0e9f066e</FormResultsID>
<MediaList />
<MembershipID i:nil="true" />
<OrderID i:nil="true" />
<Results><b>Name:</b> Elizabeth DePasquale<br/><b>Email:</b> [email protected]<br/><b>Message:</b> Good morning, are you available for a birthday party this Saturday 12/13, at noon? Thank you, Elizabeth<br/><br/><b>IP Address:</b> 68.229.28.185</Results>
<SiteName>craftingcheetah</SiteName>
<SubmitProviderResponse i:nil="true" />
</FormResults>