Front Attachments API

The Attachments API from Front — 4 operation(s) for attachments.

Operations 4

GET /comments/{comment_id}/download/{attachment_link_id} Download attachment for a comment #
GET /download/{attachment_link_id} Download attachment #
GET /message_templates/{message_template_id}/download/{attachment_link_id} Download attachment for a message template #
GET /messages/{message_id}/download/{attachment_link_id} Download attachment for a message #

Documentation

Specifications

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/front-attachments-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

front-attachments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Channel Accounts Attachments API
  contact:
    name: Front Platform
    url: https://community.front.com
servers:
- url: https://api2.frontapp.com
security:
- http: []
tags:
- name: Attachments
paths:
  /comments/{comment_id}/download/{attachment_link_id}:
    get:
      summary: Download attachment for a comment
      operationId: download-attachment-for-a-comment
      description: 'Download an attachment file for a given comment ID


        Required scope: `attachments:read`'
      tags:
      - Attachments
      parameters:
      - in: path
        name: comment_id
        required: true
        description: The Comment ID
        schema:
          type: string
          default: com_1v3ef
      - in: path
        name: attachment_link_id
        required: true
        description: The Attachment ID
        schema:
          type: string
          default: fil_55c8c149
      responses:
        '200':
          $ref: '#/components/responses/attachment'
      x-required-scopes:
      - attachments:read
  /download/{attachment_link_id}:
    get:
      summary: Download attachment
      operationId: download-attachment
      description: 'Download an attachment file.


        Required scope: `attachments:read`'
      tags:
      - Attachments
      parameters:
      - in: path
        name: attachment_link_id
        required: true
        description: The Attachment ID
        schema:
          type: string
          default: fil_55c8c149
      responses:
        '200':
          $ref: '#/components/responses/attachment'
      x-required-scopes:
      - attachments:read
  /message_templates/{message_template_id}/download/{attachment_link_id}:
    get:
      summary: Download attachment for a message template
      operationId: download-attachment-for-a-message-template
      description: 'Download an attachment file for a given message template ID


        Required scope: `attachments:read`'
      tags:
      - Attachments
      parameters:
      - in: path
        name: message_template_id
        required: true
        description: The Message Template ID
        schema:
          type: string
          default: rsp_1v3ef
      - in: path
        name: attachment_link_id
        required: true
        description: The Attachment ID
        schema:
          type: string
          default: fil_55c8c149
      responses:
        '200':
          $ref: '#/components/responses/attachment'
      x-required-scopes:
      - attachments:read
  /messages/{message_id}/download/{attachment_link_id}:
    get:
      summary: Download attachment for a message
      operationId: download-attachment-for-a-message
      description: 'Download an attachment file for a given message id. Should be used by partner channels.


        Required scope: `attachments:read`'
      tags:
      - Attachments
      parameters:
      - in: path
        name: message_id
        required: true
        description: The Message ID
        schema:
          type: string
          default: msg_12345
      - in: path
        name: attachment_link_id
        required: true
        description: The Attachment ID
        schema:
          type: string
          default: fil_55c8c149
      responses:
        '200':
          $ref: '#/components/responses/attachment'
      x-required-scopes:
      - attachments:read
components:
  responses:
    attachment:
      description: The binary content of the attachment file
      content:
        '*/*':
          schema:
            type: string
            format: binary
      headers:
        Content-Type:
          description: The MIME type of the attachment file
          schema:
            type: string
            example: application/pdf
        Content-Length:
          description: The size of the attachment file in bytes
          schema:
            type: string
            example: '1024'
  securitySchemes:
    http:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-api-id: front
x-explorer-enabled: false
x-proxy-enabled: true
x-samples-enabled: true