export const metadata = { title: 'Attachments', description: 'On this page, we’ll dive into the different attachment endpoints you can use to manage attachments programmatically.', } # Attachments Attachments are how you share things in Protocol — they allow you to send all sorts of files to your contacts and groups. On this page, we'll dive into the different attachment endpoints you can use to manage attachments programmatically. We'll look at how to query, upload, update, and delete attachments. {{ className: 'lead' }} ## The attachment model The attachment model contains all the information about the files you send to your contacts and groups, including the name, type, and size. ### Properties Unique identifier for the attachment. Unique identifier for the message associated with the attachment. The filename for the attachment. The URL for the attached file. The MIME type of the attached file. The file size of the attachment in bytes. Timestamp of when the attachment was created. --- ## List all attachments {{ tag: 'GET', label: '/v1/attachments' }} This endpoint allows you to retrieve a paginated list of all your attachments (in a conversation if a conversation id is provided). By default, a maximum of ten attachments are shown per page. ### Optional attributes Limit to attachments from a given conversation. Limit the number of attachments returned. ```bash {{ title: 'cURL' }} curl -G https://api.protocol.chat/v1/attachments \ -H "Authorization: Bearer {token}" \ -d conversation_id="xgQQXg3hrtjh7AvZ" \ -d limit=10 ``` ```js import ApiClient from '@example/protocol-api' const client = new ApiClient(token) await client.attachments.list() ``` ```python from protocol_api import ApiClient client = ApiClient(token) client.attachments.list() ``` ```php $client = new \Protocol\ApiClient($token); $client->attachments->list(); ``` ```json {{ title: 'Response' }} { "has_more": false, "data": [ { "id": "Nc6yKKMpcxiiFxp6", "message_id": "LoPsJaMcPBuFNjg1", "filename": "Invoice_room_service__Plaza_Hotel.pdf", "file_url": "https://assets.protocol.chat/attachments/Invoice_room_service__Plaza_Hotel.pdf", "file_type": "application/pdf", "file_size": 21352, "created_at": 692233200 }, { "id": "hSIhXBhNe8X1d8Et" // ... } ] } ``` --- ## Create an attachment {{ tag: 'POST', label: '/v1/attachments' }} This endpoint allows you to upload a new attachment to a conversation. See the code examples for how to send the file to the Protocol API. ### Required attributes The file you want to add as an attachment. ```bash {{ title: 'cURL' }} curl https://api.protocol.chat/v1/attachments \ -H "Authorization: Bearer {token}" \ -F file="../Invoice_room_service__Plaza_Hotel.pdf" ``` ```js import ApiClient from '@example/protocol-api' const client = new ApiClient(token) await client.attachments.create({ file }) ``` ```python from protocol_api import ApiClient client = ApiClient(token) client.attachments.create(file=file) ``` ```php $client = new \Protocol\ApiClient($token); $client->attachments->create([ 'file' => $file, ]); ``` ```json {{ title: 'Response' }} { "id": "Nc6yKKMpcxiiFxp6", "message_id": "LoPsJaMcPBuFNjg1", "filename": "Invoice_room_service__Plaza_Hotel.pdf", "file_url": "https://assets.protocol.chat/attachments/Invoice_room_service__Plaza_Hotel.pdf", "file_type": "application/pdf", "file_size": 21352, "created_at": 692233200 } ``` --- ## Retrieve an attachment {{ tag: 'GET', label: '/v1/attachments/:id' }} This endpoint allows you to retrieve an attachment by providing the attachment id. Refer to [the list](#the-attachment-model) at the top of this page to see which properties are included with attachment objects. ```bash {{ title: 'cURL' }} curl https://api.protocol.chat/v1/attachments/Nc6yKKMpcxiiFxp6 \ -H "Authorization: Bearer {token}" ``` ```js import ApiClient from '@example/protocol-api' const client = new ApiClient(token) await client.attachments.get('Nc6yKKMpcxiiFxp6') ``` ```python from protocol_api import ApiClient client = ApiClient(token) client.attachments.get("Nc6yKKMpcxiiFxp6") ``` ```php $client = new \Protocol\ApiClient($token); $client->attachments->get('Nc6yKKMpcxiiFxp6'); ``` ```json {{ title: 'Response' }} { "id": "Nc6yKKMpcxiiFxp6", "message_id": "LoPsJaMcPBuFNjg1", "filename": "Invoice_room_service__Plaza_Hotel.pdf", "file_url": "https://assets.protocol.chat/attachments/Invoice_room_service__Plaza_Hotel.pdf", "file_type": "application/pdf", "file_size": 21352, "created_at": 692233200 } ``` --- ## Update an attachment {{ tag: 'PUT', label: '/v1/attachments/:id' }} This endpoint allows you to perform an update on an attachment. Currently, the only supported type of update is changing the filename. ### Optional attributes The new filename for the attachment. ```bash {{ title: 'cURL' }} curl -X PUT https://api.protocol.chat/v1/attachments/Nc6yKKMpcxiiFxp6 \ -H "Authorization: Bearer {token}" \ -d filename="Invoice_room_service__Plaza_Hotel_updated.pdf" ``` ```js import ApiClient from '@example/protocol-api' const client = new ApiClient(token) await client.attachments.update('Nc6yKKMpcxiiFxp6', { filename: 'Invoice_room_service__Plaza_Hotel_updated.pdf', }) ``` ```python from protocol_api import ApiClient client = ApiClient(token) client.attachments.update("Nc6yKKMpcxiiFxp6", filename="Invoice_room_service__Plaza_Hotel_updated.pdf") ``` ```php $client = new \Protocol\ApiClient($token); $client->attachments->update('Nc6yKKMpcxiiFxp6', [ 'filename' => 'Invoice_room_service__Plaza_Hotel_updated.pdf', ]); ``` ```json {{ title: 'Response' }} { "id": "Nc6yKKMpcxiiFxp6", "message_id": "LoPsJaMcPBuFNjg1", "filename": "Invoice_room_service__Plaza_Hotel.pdf", "file_url": "https://assets.protocol.chat/attachments/Invoice_room_service__Plaza_Hotel_updated.pdf", "file_type": "application/pdf", "file_size": 21352, "created_at": 692233200 } ``` --- ## Delete an attachment {{ tag: 'DELETE', label: '/v1/attachments/:id' }} This endpoint allows you to delete attachments. Note: This will permanently delete the file. ```bash {{ title: 'cURL' }} curl -X DELETE https://api.protocol.chat/v1/attachments/Nc6yKKMpcxiiFxp6 \ -H "Authorization: Bearer {token}" ``` ```js import ApiClient from '@example/protocol-api' const client = new ApiClient(token) await client.attachments.delete('Nc6yKKMpcxiiFxp6') ``` ```python from protocol_api import ApiClient client = ApiClient(token) client.attachments.delete("Nc6yKKMpcxiiFxp6") ``` ```php $client = new \Protocol\ApiClient($token); $client->attachments->delete('Nc6yKKMpcxiiFxp6'); ```