github.com/optim-corp/cios-golang-sdk@v0.5.1/openapi/openapis/auth.openapi.yml (about)

     1  openapi: 3.0.1
     2  info:
     3    title: Account API
     4    version: 1.0.0
     5  paths:
     6    '/connect/token':
     7      post:
     8        tags:
     9          - auth
    10        operationId: refreshToken
    11        requestBody:
    12          content:
    13            application/x-www-form-urlencoded:
    14              schema:
    15                $ref: "../components/auth-component.openapi.yml#/components/schemas/ConnectTokenRequest"
    16        responses:
    17          200:
    18            description: ''
    19            content:
    20              application/json:
    21                schema:
    22                  $ref: "../components/auth-component.openapi.yml#/components/schemas/ConnectTokenResponse"
    23        security:
    24          - basicAuth: [ ]
    25