<Intro>

<EndpointHeader />

<Description>

Returns the attachments on a message in a conversation. Attachment bytes are downloadable for 30 days after the message occurred; after that this endpoint returns `410 Gone` while the attachment metadata remains readable on the message's `attachment_manifest`.

</Description>

</Intro>

<Payload kind="response">

<Field name="data" type="array of object" required>

<FieldChildren kind="response">

<Field name="id" type="string" prefix="data." required>

<Description>

Attachment ID, used to download the attachment bytes.

</Description>

</Field>

<Field name="filename" type="nullable string" prefix="data." required>

<Description>

Original filename, or null when the attachment had none.

</Description>

</Field>

<Field name="content_type" type="nullable string" prefix="data." required>

<Description>

MIME content type, or null when it could not be determined.

</Description>

</Field>

<Field name="size" type="integer" prefix="data." required>

<Description>

Attachment size in bytes.

</Description>

</Field>

</FieldChildren>

</Field>

</Payload>