FreshBooks Auth API

The Auth API from FreshBooks — 1 operation(s) for auth.

OpenAPI Specification

freshbooks-auth-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: FreshBooks REST Auth API
  version: '2026-05-23'
  description: 'Best-effort OpenAPI 3.1 description of the FreshBooks accounting REST API.

    Scoped per account via /accounting/account/{accountId}/* paths.

    Generated from public documentation; not an official spec.

    '
  contact:
    name: FreshBooks Developer Portal
    url: https://www.freshbooks.com/api/start
servers:
- url: https://api.freshbooks.com
  description: Production
security:
- bearerAuth: []
tags:
- name: Auth
paths:
  /auth/api/v1/users/me:
    get:
      operationId: getCurrentUser
      summary: Identity of the authenticated user
      responses:
        '200':
          description: Current user identity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Object'
      tags:
      - Auth
components:
  schemas:
    Object:
      type: object
      additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 access token obtained via the FreshBooks authorization code flow.