---
title: "List surveys"
method: GET
path: "/api/satisfaction-surveys"
tags: ["Satisfaction Surveys"]
---

# List surveys

`GET /api/satisfaction-surveys`

List surveys, paginated and ordered by their creation date, with the most recently created  first.

## Query parameters

- `cursor` string
- `limit` integer
- `order_by` 'created_datetime:asc' | 'created_datetime:desc'
- `ticket_id` integer, nullable

## Response `200`

A list of surveys.

- SatisfactionSurvey[]
  - `id` integer — ID of the survey.
  - `body_text` string, nullable — The comment sent by the customer.
  - `created_datetime` string, date-time, nullable — When the survey was created.
  - `customer_id` integer — The ID of the customer who filled the survey.
  - `meta` object, nullable — Data associated with the satisfaction survey. You can use this parameter to store structured information (key-value data) about the satisfaction survey. This field is not used by Gorgias.
  - `score` integer, nullable — The level of satisfaction. Scores range from 1 to 5.
  - `scored_datetime` string, date-time, nullable — When the survey was filled by the customer.
  - `sent_datetime` string, date-time, nullable — When the survey was sent. If is not set it means that it was not sent yet.
  - `should_send_datetime` string, date-time, nullable — When the survey should be sent. If not set then the survey will not be sent by Gorgias.
  - `ticket_id` integer — The ID of the ticket the survey is associated with.
  - `uri` string — URI of the survey.

---

[API](https://skmtc.net/gorgias/apis/gorgias-rest-api.md) · [All operations](https://skmtc.net/gorgias/apis/gorgias-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gorgias/gorgias-rest-api/versions/36f2e31f4e81/schema)
