> ## Documentation Index
> Fetch the complete documentation index at: https://docs.repdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Submit survey

> # Description

Get the next page of a survey

## Request payload

The payload of this endpoint is the same of the "Get next page" endpoint
It is very important to send as `userData` the last value the "Get next page" endpoint returned.

## Response

The response has the same specifications that the "Get next page" endpoint

# Description

Get the next page of a survey

## Request payload

The payload of this endpoint is the same of the "Get next page" endpoint
It is very important to send as `userData` the last value the "Get next page" endpoint returned.

## Response

The response has the same specifications that the "Get next page" endpoint


## OpenAPI

````yaml POST /survey-service-staging-sightx-io/api/next
openapi: 3.0.3
info:
  title: SightX API
  version: 1.0.0
  description: >-
    SightX REST API documentation. Most responses are JSON; some export
    endpoints return files. API access is a paid add-on — contact
    sales@sightx.io for details.
servers:
  - url: https://auth.admin.sightx.io
    description: Authentication (Production)
  - url: https://auth.staging-admin.sightx.io
    description: Authentication (Staging)
security:
  - AuthorizationHeader: []
paths:
  /survey-service-staging-sightx-io/api/next:
    post:
      summary: Submit survey
      description: >-
        # Description


        Get the next page of a survey


        ## Request payload


        The payload of this endpoint is the same of the "Get next page" endpoint

        It is very important to send as `userData` the last value the "Get next
        page" endpoint returned.


        ## Response


        The response has the same specifications that the "Get next page"
        endpoint
      operationId: submit-survey-post-survey-service-staging-sightx-io-api-next
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      servers:
        - url: https://survey-service.sightx.io
components:
  securitySchemes:
    AuthorizationHeader:
      type: apiKey
      in: header
      name: Authorization
      description: Access token obtained from the m2m-token endpoint.

````