Outdoorsy Admin API

The admin API from Outdoorsy — 1 operation(s) for admin.

OpenAPI Specification

outdoorsy-admin-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'The Outdoorsy API (or simply "API") is organized around REST. It uses

    predictable, resource-oriented URLs and implements standard HTTP response

    codes, verbs, authentication mechanisms, and a variety of request encodings.


    ## Versioning


    The API implements semantic versioning.'
  title: Outdoorsy API Documentation Admin API
  version: 0.0.1
servers:
- url: /v0
security:
- Bearer:
  - '[]'
- API-Key:
  - '[]'
tags:
- name: admin
paths:
  /admin/users/{user_id}/resend-confirmation:
    post:
      description: Resends email confirmation for a specific user (Admin only)
      tags:
      - admin
      operationId: adminAuthCredsResendForUser
      responses:
        '204':
          $ref: '#/components/responses/noContentResponse'
        '401':
          $ref: '#/components/responses/unauthorizedError'
        '404':
          $ref: '#/components/responses/notFoundError'
        default:
          $ref: '#/components/responses/genericError'
components:
  responses:
    unauthorizedError:
      description: Unauthorized error
    notFoundError:
      description: Not found error
    noContentResponse:
      description: Everything went as planned
    genericError:
      description: An unknown, unexpected error.
  securitySchemes:
    API-Key:
      type: apiKey
      name: API-Key
      in: header
    Bearer:
      type: apiKey
      name: Authorization
      in: header