Redmine My API

The My API from Redmine — 1 operation(s) for my.

OpenAPI Specification

redmine-my-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Redmine REST Attachments My API
  description: REST API for Redmine project management. Base URL is your Redmine instance URL.
  version: 1.0.0
servers:
- url: https://{redmine_host}
  description: Redmine instance
  variables:
    redmine_host:
      default: redmine.example.com
security:
- apiKeyHeader: []
- apiKeyQuery: []
- basicAuth: []
tags:
- name: My
paths:
  /my/account.json:
    get:
      summary: Get my account
      responses:
        '200':
          description: My account
      tags:
      - My
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      in: header
      name: X-Redmine-API-Key
    apiKeyQuery:
      type: apiKey
      in: query
      name: key
    basicAuth:
      type: http
      scheme: basic