Get File

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

Retrieve a file by ID.

You should always excercise extreme caution when working with files that don't come from a trusted source.

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
file_id*string

Response Body

*/*

application/json

fetch("https://example.com/v1/forms/{form_id}/submissions/{submission_id}/files/{file_id}", {  method: "GET",  headers: {    "x-api-key": "...",    "x-team-id": "..."  }})
"string"
{  "message": "string"}