---
title: Enumerations - APIs
description: Data Export objects enumerations reference
lastUpdated: 07 April 2026
source_url:
  html: https://docs.contentsquare.com/fr/api/export/enumerations/
  md: https://docs.contentsquare.com/fr/api/export/enumerations/index.md
---

> Documentation index: https://docs.contentsquare.com/llms.txt
> Use this file to discover all available pages before exploring further.

Note

Cette page est affichée en anglais car elle n'est pas disponible dans votre langue.

Enumerations used in the request or response payloads.

## `deviceId`

**integer**

* `-1`: All devices
* `0`: Unknown
* `1`: Desktop
* `2`: Mobile (Web)
* `3`: Tablet (Web)
* `4`: Mobile (App)
* `5`: Tablet (App)

## `format`

**string**

Beginning of date range for analysis.

* `CSV`: CSV (with first row as headers)
* `JSONL`: JSON Lines format, a file format with one line per row of data, each line being a JSON object

## `frequency`

**string**

* `daily`: daily job
* `hourly`: hourly job
* `once`: one-time job

## `scope`

**string**

* `sessions`: to extract session-level data
* `views`: to extract pageview-level data

## `state` (job state)

**string**

* `ACTIVE`: active jobs (as opposed to SUSPENDED for daily jobs). An active job will start job runs. A one-time "once" job in ACTIVE status is a job queued waiting for execution.
* `COMPLETED`: for completed one-time ("once") jobs (not relevant for daily jobs)
* `COMPUTING`: for running one-time ("once") jobs
* `DELETED`: for deleted jobs
* `SUSPENDED`: for deactivated daily jobs (as opposed to ACTIVE); only relevant for daily jobs. A suspended job will not start job runs.

## `state` (job run state)

**string**

* `CREATED`: for job runs created and not yet RUNNABLE
* `FAILURE`: for job runs terminated with an error
* `RUNNABLE`: for job runs ready-to-start
* `RUNNING`: for deleted jobs
* `SUCCESS`: for job runs completed with success
