Skip to main content
POST
/
public
/
get-form-submissions-v2
Get form submissions
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-form-submissions-v2 \
  --header 'Content-Type: application/json' \
  --header 'FERMION-API-KEY: <api-key>' \
  --data '
{
  "data": [
    {
      "data": {
        "formId": "<string>"
      }
    }
  ]
}
'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "submissions": [
          {
            "submissionId": "<string>",
            "userId": "<string>",
            "submittedAt": "<string>",
            "answers": [
              {
                "blockId": "<string>",
                "blockType": "<string>",
                "question": "<string>",
                "answer": "<unknown>"
              }
            ]
          }
        ]
      }
    }
  }
]

Authorizations

FERMION-API-KEY
string
header
required

Body

application/json

API Request Body

data
object[]
required

Response

200 - application/json

API Response Body

output
object
required