Groove Attachments API

The Attachments API from Groove — 1 operation(s) for attachments.

OpenAPI Specification

groove-attachments-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Groove REST API v1 Agents Attachments API
  description: 'The Groove REST API v1 provides programmatic access to Groove help-desk

    resources including tickets, messages, customers, agents, groups,

    mailboxes, folders, attachments, webhooks, knowledge bases, and widgets.

    Note: v1 REST is no longer in active development; Groove recommends the

    new GraphQL API for richer features.

    '
  version: '1.0'
  contact:
    name: Groove Developers
    url: https://developer.groovehq.com
servers:
- url: https://api.groovehq.com/v1
  description: Groove REST API base URL
security:
- bearerAuth: []
- accessTokenQuery: []
tags:
- name: Attachments
paths:
  /attachments:
    get:
      summary: List attachments
      operationId: listAttachments
      responses:
        '200':
          description: A list of attachments.
      tags:
      - Attachments
    post:
      summary: Upload an attachment
      operationId: uploadAttachment
      responses:
        '201':
          description: The uploaded attachment.
      tags:
      - Attachments
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 / personal access token via Authorization header.
    accessTokenQuery:
      type: apiKey
      in: query
      name: access_token
      description: Access token passed as a URL query parameter.