From Bitty Bushbaby, 5 Years ago, written in Plain Text.
This paste is a reply to Untitled from Red Hedgehog - go back
Embed
Viewing differences between Untitled and Re: Untitled
  '/v1/configuration/access_token':
    post:
      tags:
        - Access Token
      summary: 'Generate access token by invoking platform\'s access token url'
      description: 'Generate access token by invoking platform\'s access token url'
      operationId: generateAccessTokenPOST
      produces:
        - application/json
      parameters:
        - name: Authorization
          in: header
          description: Authorization Header
          required: true
          type: string
        - name: Request Body
          in: body
          description: Request Body
          required: true
          schema:
            type: object
            properties:
              platformIssuerId:
                type: string
              selectedContent:
                type: scope
                items:
                  type: string
                  
      responses:
        '200':
          description: Okay
          schema:
            type: string
'       400':
          description: Bad Request
        '401':
          description: Authentication failed
        '403':
          description: Access is Denied
        '500':
          description: Internal Server Error