POST https://api.surveyjs.io/public/Survey/post
Post the survey result.
Request Information
URI Parameters
None.
Body Parameters
SurveyClientPostResultName | Description | Type | Additional information |
---|---|---|---|
PostId |
The Post Id of your survey.
|
globally unique identifier |
None.
|
SurveyResult |
Your survey result as Json string.
|
string |
None.
|
ClientId |
Optional. The unique client id for a person running the survey.
|
string |
None.
|
IsPartialCompleted |
Optional. Valid if CliendId is not empty. True if a person doesn't complete the survey yet.
|
boolean |
None.
|
Request Formats
application/json, text/json
{ "PostId": "7c2bc284-fca9-41e0-b363-d46eb64c2761", "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>7c2bc284-fca9-41e0-b363-d46eb64c2761</PostId> <SurveyResult>sample string 2</SurveyResult> </SurveyClientPostResult>
application/x-www-form-urlencoded
Response Information
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.