Nory Branch API

The Branch API from Nory — 1 operation(s) for branch.

OpenAPI Specification

nory-branch-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Nory Middleware - Sandbox Environment Authorization Branch API
  version: 1.0.0
  description: 'Nory '
servers:
- https://sandbox.nory.ai
- http://localhost:8000
basePath: /app/v1/
schemes:
- https
- http
tags:
- name: Branch
paths:
  /branches/{id}:
    get:
      tags:
      - Branch
      name: Get Branch
      summary: Get Branch associated with the User
      consumes:
      - application/json
      produces:
      - application/json
      parameters:
      - in: path
        name: id
        schema:
          type: string
        required:
        - name
      responses:
        '200':
          description: A single branch object
          schema: null
        '401':
          description: No auth token
        '403':
          description: JWT token invalid
securityDefinitions:
  bearerAuth:
    type: apiKey
    name: Authorization
    scheme: bearer
    in: header