Get list of submissions for a specific form
Authentication with the “FERMION-API-KEY” header is required to use this endpoint.
Rate limit: Maximum 60 requests in a window of 1m.
cURL
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>" } ] } ] } } } ]
API Request Body
Show child attributes
API Response Body