Skip to main content
GET
/
tickets
/
{ticketId}
/
message
/
{messageId}
/
attachment
/
{attachmentId}
/
download
Download Ticket message attachment
curl --request GET \
  --url https://api.mijnklantportaal.nl/v1/tickets/{ticketId}/message/{messageId}/attachment/{attachmentId}/download \
  --header 'Authorization: Bearer <token>'
{
  "link": "https://...",
  "expiresAt": "2025-04-29T21:00:00+02:00"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

ticketId
string
required

ID of the ticket record

messageId
string
required

ID of the ticket message record

attachmentId
string
required

ID of the ticket message attachment record

Response

Cloud file response

Link to the file

Example:

"https://..."

expiresAt
string

Date and time when the link to the file expires, written in ATOM format.

Example:

"2025-04-29T21:00:00+02:00"

I