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": "5136684e-a507-4ef7-94b5-17a0b49e0315" }
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>5136684e-a507-4ef7-94b5-17a0b49e0315</MembershipID> <NotificationResults>sample string 2</NotificationResults> <Results>sample string 1</Results> </SubmitFormResultsRequest>
Response Information
Response body formats
application/json, text/json
Sample:
{ "FormResultsID": "e4738096-f320-4905-bdb9-b264a3ad89e6", "FormID": "dd27d109-776c-45ca-bcb7-18f24fc7d5ae", "SiteName": "ashleyscottmusic", "FormName": "Contact - Basic", "Results": "<b>Name:</b> Neil Israel<br/><b>Email:</b> izman001@comcast.net<br/><b>Message:</b> I messaged a week or 2 ago regarding the new album. No response! Once again, will it be available on a physical cd? Looking forward to a quick response. Thanks.<br/><b>IP Address:</b> 2601:42:703:bcf0:10a7:e821:7f4d:956a", "CreatedTime": "2025-07-16T12:52:37.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>2025-07-16T19:52:37.477Z</d2p1:DateTime> <d2p1:OffsetMinutes>-420</d2p1:OffsetMinutes> </CreatedTime> <FormID>dd27d109-776c-45ca-bcb7-18f24fc7d5ae</FormID> <FormName>Contact - Basic</FormName> <FormResultsID>e4738096-f320-4905-bdb9-b264a3ad89e6</FormResultsID> <MediaList /> <MembershipID i:nil="true" /> <OrderID i:nil="true" /> <Results><b>Name:</b> Neil Israel<br/><b>Email:</b> izman001@comcast.net<br/><b>Message:</b> I messaged a week or 2 ago regarding the new album. No response! Once again, will it be available on a physical cd? Looking forward to a quick response. Thanks.<br/><b>IP Address:</b> 2601:42:703:bcf0:10a7:e821:7f4d:956a</Results> <SiteName>ashleyscottmusic</SiteName> <SubmitProviderResponse i:nil="true" /> </FormResults>