Get Submission

GET/v1/forms/{form_id}/submissions/{submission_id}

Get form submission by ID.

Authorization

x-api-key x-team-id
x-api-key<token>

In: header

x-team-id<token>

In: header

Path Parameters

form_id*string
submission_id*string

Response Body

application/json

application/json

fetch("https://example.com/v1/forms/string/submissions/string", {  method: "GET"})
{
  "id": "string",
  "country": "string",
  "ip": "string",
  "user_agent": "string",
  "referer": "string",
  "data": {
    "name": "John Doe",
    "email": "test@vexrun.com",
    "message": "Hello!",
    "age": 30,
    "rating": 4.5,
    "subscribed": true,
    "address": {
      "city": "Warsaw",
      "country": "Poland"
    },
    "tags": [
      "support",
      "billing"
    ],
    "languages": [
      {
        "code": "pl",
        "level": "native"
      },
      {
        "code": "en",
        "level": "fluent"
      },
      {
        "code": "de",
        "level": "beginner"
      }
    ]
  },
  "files": [
    {
      "id": "string",
      "field_name": "string",
      "size": 0,
      "mime_type": "string",
      "ext": "string"
    }
  ],
  "created_at": 0
}
{
  "message": "string"
}