POST https://api.surveyjs.io/private/Survey/post
Posts survey results to the SurveyJS Service.
Request Information
URI Parameters
None.
Body Parameters
SurveyClientPostResultName | Description | Type | Additional information |
---|---|---|---|
PostId |
A survey's post ID.
|
globally unique identifier |
None.
|
SurveyResult |
A stringified JSON object with survey results.
|
string |
None.
|
ClientId |
(Optional) The ID of a client running the survey.
|
string |
None.
|
IsPartialCompleted |
(Optional) A Boolean value that equals true if the survey is not yet completed. Can be used only if CliendId is specified.
|
boolean |
None.
|
Request Formats
application/json, text/json
{ "PostId": "eb90a81b-6470-47d2-943f-1069e4bbe7b7", "SurveyResult": "sample string 2", "ClientId": "sample string 3", "IsPartialCompleted": true }
application/xml, text/xml
<SurveyClientPostResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/dxSurveyAPI.Controllers"> <ClientId>sample string 3</ClientId> <IsPartialCompleted>true</IsPartialCompleted> <PostId>eb90a81b-6470-47d2-943f-1069e4bbe7b7</PostId> <SurveyResult>sample string 2</SurveyResult> </SurveyClientPostResult>
application/x-www-form-urlencoded
Sample not available.
Response Information
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.