# Get a submission

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

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

**Get a submission**

Returns a single form submission with all field values.

Required permissions: `forms.submissions.view`

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | string | Yes | Unique identifier |
| `submissionId` | path | string | Yes | Form submission ID |


### 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/501 \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "data": {
    "id": 501,
    "formId": 1,
    "status": "unread",
    "data": {
      "name": "Sophie Bernard",
      "email": "sophie@example.com",
      "message": "I would like to know more about your enterprise plan."
    },
    "ipAddress": "203.0.113.42",
    "userAgent": "Mozilla/5.0",
    "createdAt": "2025-04-05T16:30:00.000Z"
  }
}
```

---