Add responses for a new respondent
All actual respondents (no preview) will be charged according to your billing model.
| Name | Description | Type | Additional information | 
|---|---|---|---|
| 
                         
                                surveyId
                                 
                            The id of a survey. 
                                Type
                                integer
                             
                                
                                    Additional info
                                     
                        Required 
                                 | 
                |||
| surveyId | 
                         The id of a survey.  | 
                    integer | 
                             Required  | 
                
| 
                         
                                includeSuccessResponses
                                 
                            By default, we only show the invalid survey responses in the API response. You can include the correctly processed responses on demand. 
                                Type
                                boolean
                             
                                
                                    Additional info
                                     
                        Optional, Default value is False 
                                 | 
                |||
| includeSuccessResponses | 
                         By default, we only show the invalid survey responses in the API response. You can include the correctly processed responses on demand.  | 
                    boolean | 
                             Optional, Default value is False  | 
                
New respondent with responses
| Name | Description | Type | Additional information | 
|---|---|---|---|
| 
                         
                                ContactId
                                 
                            The id of the contact for which you are sending responses. The contact id is optional for anonymous surveys. 
                                Type
                                integer
                             
                         | 
                |||
| ContactId | 
                         The id of the contact for which you are sending responses. The contact id is optional for anonymous surveys.  | 
                    integer | |
| 
                         
                                LanguageCode
                                 
                            2-letter ISO 639-1 language code. The available language codes can be found for each survey in the Survey - Langs property. 
                                Type
                                string
                             
                                
                                    Additional info
                                     
                        Required 
                                 | 
                |||
| LanguageCode | 
                         2-letter ISO 639-1 language code. The available language codes can be found for each survey in the Survey - Langs property.  | 
                    string | 
                             Required  | 
                
| 
                         
                                BrowserId
                                 
                            The id of the browser used to complete the survey. 
                                Type
                                byte
                             
                                
                                    Additional info
                                    
                                 
                         | 
                |||
| BrowserId | 
                         The id of the browser used to complete the survey.  | 
                    byte | |
| 
                         
                                OsId
                                 
                            The id of the operating system used to complete the survey. 
                                Type
                                byte
                             
                                
                                    Additional info
                                    
                                 
                         | 
                |||
| OsId | 
                         The id of the operating system used to complete the survey.  | 
                    byte | |
| 
                         
                                IpAddress
                                 
                            The IP address used to complete the survey. 
                                Type
                                string
                             
                         | 
                |||
| IpAddress | 
                         The IP address used to complete the survey.  | 
                    string | |
| 
                         
                                Preview
                                 
                            Can be used to test your API-call, no results will be recorded but the exception handling will occur. 
                                Type
                                boolean
                             
                         | 
                |||
| Preview | 
                         Can be used to test your API-call, no results will be recorded but the exception handling will occur.  | 
                    boolean | |
| 
                         
                                RespondentStatusId
                                 
                            The id shows the completion level: partial, reached end or screened out. 
                                Type
                                byte
                             
                                
                                    Additional info
                                     
                        
, Required 
                                 | 
                |||
| RespondentStatusId | 
                         The id shows the completion level: partial, reached end or screened out.  | 
                    byte | , Required | 
| 
                         
                                QuestionResponses
                                 
                            The response for this question and respondent 
                                Type
                                        Collection of NewQuestionResponse
                             
                         | 
                |||
| QuestionResponses | 
                         The response for this question and respondent  | 
                    Collection of NewQuestionResponse | |
| 
                         
                                ElapsedTime
                                 
                            The elapsed time in seconds (of the page) which will be added to the current elapsed time for the entire respondent 
                                Type
                                integer
                             
                         | 
                |||
| ElapsedTime | 
                         The elapsed time in seconds (of the page) which will be added to the current elapsed time for the entire respondent  | 
                    integer | |
{
  "LanguageCode": "en",
  "BrowserId": 64,
  "OsId": 64,
  "IpAddress": "172.16.254.1",
  "Preview": true,
  "RespondentStatusId": 64,
  "QuestionResponses": [
    {
      "QuestionId": 1,
      "Responses": [
        {
          "ResponseId": 1,
          "PointValue": 1.0,
          "Value": "sample string 2"
        },
        {
          "ResponseId": 1,
          "PointValue": 1.0,
          "Value": "sample string 2"
        }
      ]
    },
    {
      "QuestionId": 1,
      "Responses": [
        {
          "ResponseId": 1,
          "PointValue": 1.0,
          "Value": "sample string 2"
        },
        {
          "ResponseId": 1,
          "PointValue": 1.0,
          "Value": "sample string 2"
        }
      ]
    }
  ],
  "ElapsedTime": 1,
  "ContactId": 1
}
        
<NewRespondent xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ElapsedTime>1</ElapsedTime>
  <QuestionResponses>
    <NewQuestionResponse>
      <QuestionId>1</QuestionId>
      <Responses>
        <NewResponse>
          <PointValue>1</PointValue>
          <ResponseId>1</ResponseId>
          <Value>sample string 2</Value>
        </NewResponse>
        <NewResponse>
          <PointValue>1</PointValue>
          <ResponseId>1</ResponseId>
          <Value>sample string 2</Value>
        </NewResponse>
      </Responses>
    </NewQuestionResponse>
    <NewQuestionResponse>
      <QuestionId>1</QuestionId>
      <Responses>
        <NewResponse>
          <PointValue>1</PointValue>
          <ResponseId>1</ResponseId>
          <Value>sample string 2</Value>
        </NewResponse>
        <NewResponse>
          <PointValue>1</PointValue>
          <ResponseId>1</ResponseId>
          <Value>sample string 2</Value>
        </NewResponse>
      </Responses>
    </NewQuestionResponse>
  </QuestionResponses>
  <RespondentStatusId>64</RespondentStatusId>
  <BrowserId>64</BrowserId>
  <IpAddress>172.16.254.1</IpAddress>
  <LanguageCode>en</LanguageCode>
  <OsId>64</OsId>
  <Preview>true</Preview>
  <ContactId>1</ContactId>
</NewRespondent>
        | Name | Description | Type | Additional information | 
|---|---|---|---|
| 
                         
                                Meta
                                 
                            The metadata such as paging parameters, status code, timestamp,... which are related to this request. 
                                Type
                                MetaData
                             
                         | 
                |||
| Meta | 
                         The metadata such as paging parameters, status code, timestamp,... which are related to this request.  | 
                    MetaData | |
| Data | 
                         The actual data returned by the request.  | 
                    NewRespondentResult | |
| Links | 
                         HATEOAS related to this object. It wil contain relevant url's such as previous and next page for paged results, create/update/delete action. These url's can be used in your application for the next steps in your application logic.  | 
                    Hateoas | |
{
  "Meta": {
    "Status": 1,
    "TotalRowCount": 1,
    "Limit": 1,
    "Offset": 1,
    "TotalPageCount": 1,
    "StartRec": 1,
    "StopRec": 1,
    "Timestamp": "2025-11-04T12:20:49.287625Z",
    "IsFiltered": true
  },
  "Data": {
    "RespondentId": 1,
    "Remarks": [
      "sample string 1",
      "sample string 2"
    ],
    "Results": {
      "HasErrors": true,
      "QuestionResponseResults": [
        {
          "QuestionId": 1,
          "ResponseResults": [
            {
              "ResponseId": 2,
              "PointValue": 1.0,
              "Value": "sample string 3",
              "ResultCodes": [
                "sample string 1",
                "sample string 2"
              ]
            },
            {
              "ResponseId": 2,
              "PointValue": 1.0,
              "Value": "sample string 3",
              "ResultCodes": [
                "sample string 1",
                "sample string 2"
              ]
            }
          ]
        },
        {
          "QuestionId": 1,
          "ResponseResults": [
            {
              "ResponseId": 2,
              "PointValue": 1.0,
              "Value": "sample string 3",
              "ResultCodes": [
                "sample string 1",
                "sample string 2"
              ]
            },
            {
              "ResponseId": 2,
              "PointValue": 1.0,
              "Value": "sample string 3",
              "ResultCodes": [
                "sample string 1",
                "sample string 2"
              ]
            }
          ]
        }
      ]
    },
    "Succeeded": true,
    "FailureMessage": "sample string 3"
  }
}
        
<Payload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/">
  <Data>
    <FailureMessage>sample string 3</FailureMessage>
    <Succeeded>true</Succeeded>
    <Remarks xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>sample string 1</d3p1:string>
      <d3p1:string>sample string 2</d3p1:string>
    </Remarks>
    <RespondentId>1</RespondentId>
    <Results>
      <HasErrors>true</HasErrors>
      <QuestionResponseResults>
        <NewQuestionResponseResult>
          <QuestionId>1</QuestionId>
          <ResponseResults>
            <NewResponseResult>
              <PointValue>1</PointValue>
              <ResponseId>2</ResponseId>
              <ResultCodes xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:string>sample string 1</d8p1:string>
                <d8p1:string>sample string 2</d8p1:string>
              </ResultCodes>
              <Value>sample string 3</Value>
            </NewResponseResult>
            <NewResponseResult>
              <PointValue>1</PointValue>
              <ResponseId>2</ResponseId>
              <ResultCodes xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:string>sample string 1</d8p1:string>
                <d8p1:string>sample string 2</d8p1:string>
              </ResultCodes>
              <Value>sample string 3</Value>
            </NewResponseResult>
          </ResponseResults>
        </NewQuestionResponseResult>
        <NewQuestionResponseResult>
          <QuestionId>1</QuestionId>
          <ResponseResults>
            <NewResponseResult>
              <PointValue>1</PointValue>
              <ResponseId>2</ResponseId>
              <ResultCodes xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:string>sample string 1</d8p1:string>
                <d8p1:string>sample string 2</d8p1:string>
              </ResultCodes>
              <Value>sample string 3</Value>
            </NewResponseResult>
            <NewResponseResult>
              <PointValue>1</PointValue>
              <ResponseId>2</ResponseId>
              <ResultCodes xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:string>sample string 1</d8p1:string>
                <d8p1:string>sample string 2</d8p1:string>
              </ResultCodes>
              <Value>sample string 3</Value>
            </NewResponseResult>
          </ResponseResults>
        </NewQuestionResponseResult>
      </QuestionResponseResults>
    </Results>
  </Data>
  <Meta>
    <IsFiltered>true</IsFiltered>
    <Limit>1</Limit>
    <Offset>1</Offset>
    <StartRec>1</StartRec>
    <Status>1</Status>
    <StopRec>1</StopRec>
    <Timestamp>2025-11-04T12:20:49.287625+00:00</Timestamp>
    <TotalPageCount>1</TotalPageCount>
    <TotalRowCount>1</TotalRowCount>
  </Meta>
</Payload>
        | Title | 
|---|
| Register responses from your own code |