Skip to main content
GET
/
v1
/
evaluations
/
exports
List evaluation exports
curl --request GET \
  --url https://api.craftcx.com/v1/evaluations/exports
import requests

url = "https://api.craftcx.com/v1/evaluations/exports"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.craftcx.com/v1/evaluations/exports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "data": [
    {
      "id": "<string>",
      "filters": {
        "from": 1,
        "to": 1
      },
      "format": "csv",
      "download_url": "<string>",
      "created_at": 123,
      "updated_at": 123,
      "error_message": "<string>"
    }
  ],
  "page_info": {
    "next_cursor": "<string>",
    "has_next_page": true,
    "limit": 50
  }
}
{
"status": 400,
"title": "<string>",
"type": "about:blank",
"detail": "<string>"
}
{
"status": 401,
"title": "<string>",
"type": "about:blank",
"detail": "<string>"
}
{
"status": 500,
"title": "<string>",
"type": "about:blank",
"detail": "<string>"
}

Query Parameters

limit
integer
default:10

Maximum number of items to return

Required range: 1 <= x <= 100
Example:

10

cursor
string

Opaque cursor returned from a previous request

Minimum string length: 1
Example:

"eyJpZCI6Inh5eiJ9"

Response

Paginated evaluation exports

data
object[]
required
page_info
object
required