GET v1/forms/{formId}/attachments/list?apiToken={apiToken}

Returns a list of attachment names and temporary access URLs for a given form

Request Information

URI Parameters

NameDescriptionTypeAdditional information
formId

The unique identifier for the form submission

globally unique identifier

Required

apiToken

Your API Token

string

None.

Body Parameters

None.

Response Information

Resource Description

List of attachments on the form, as file names and temporary download URLs

AttachmentsResponse
NameDescriptionTypeAdditional information
Attachments

Collection of Attachment

None.

Response Formats

application/json, text/json

Sample:
{
  "attachments": [
    {
      "name": "sample string 1",
      "downloadUrl": "sample string 2"
    },
    {
      "name": "sample string 1",
      "downloadUrl": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<Attachments xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Attachments>
    <Attachment Name="sample string 1" DownloadUrl="sample string 2" />
    <Attachment Name="sample string 1" DownloadUrl="sample string 2" />
  </Attachments>
</Attachments>