# Export submissions as CSV

**Publié le** : 2026-05-08
**Catégorie** : Forms & Reviews

## `GET /forms/:id/submissions/export`

**Export submissions as CSV**

Downloads all submissions for a form as a CSV file. Columns match
the form's field schema.

Required permissions: `forms.submissions.export`

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | string | Yes | Unique identifier |


### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `401` | Unauthorized — invalid or missing API token |
| `403` | Forbidden — insufficient permissions |
| `404` | Not found |


### Examples

```bash
curl "https://api.lynkow.com/v1/forms/1/submissions/export" \
  -H "Authorization: Bearer $API_TOKEN" \
  -o submissions.csv
```

### Response Example

```json
"Returns a CSV file (Content-Type: text/csv). Example output:\nid,name,email,message,status,created_at\n501,\"Sophie Bernard\",\"sophie@example.com\",\"I would like to know more...\",\"unread\",\"2025-04-05 16:30:00\"\n"
```

---