Groove Agents API

The Agents API from Groove — 2 operation(s) for agents.

OpenAPI Specification

groove-agents-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Groove REST API v1 Agents 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: Agents
paths:
  /agents:
    get:
      summary: List agents
      operationId: listAgents
      responses:
        '200':
          description: A list of agents.
      tags:
      - Agents
  /agents/{id}:
    parameters:
    - in: path
      name: id
      required: true
      schema:
        type: string
    get:
      summary: Find an agent
      operationId: findAgent
      responses:
        '200':
          description: The requested agent.
      tags:
      - Agents
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.