Palenca (Vech) insights-report API

The insights-report API from Palenca (Vech) — 3 operation(s) for insights-report.

OpenAPI Specification

palenca-vech-insights-report-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Palenca accounts insights-report API
  description: Palenca API
  version: 2.0.0
tags:
- name: insights-report
paths:
  /v1/insights/reports/{account_id}:
    post:
      tags:
      - insights-report
      summary: Send Report Content
      operationId: send_report_content_v1_insights_reports__account_id__post
      parameters:
      - required: true
        schema:
          type: string
          format: uuid
          title: Account Id
        name: account_id
        in: path
      - required: false
        schema:
          type: string
          title: X-Api-Key
        name: x-api-key
        in: header
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/insights/{account_id}/extended:
    get:
      tags:
      - insights-report
      summary: Compute Buro Insights
      operationId: compute_buro_insights_v1_insights__account_id__extended_get
      parameters:
      - required: true
        schema:
          type: string
          format: uuid
          title: Account Id
        name: account_id
        in: path
      - required: false
        schema:
          type: string
          title: X-Api-Key
        name: x-api-key
        in: header
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/insights/{account_id}/extended/pdf:
    get:
      tags:
      - insights-report
      summary: Compute Buro Insights For Pdf
      operationId: compute_buro_insights_for_pdf_v1_insights__account_id__extended_pdf_get
      parameters:
      - required: true
        schema:
          type: string
          format: uuid
          title: Account Id
        name: account_id
        in: path
      - required: false
        schema:
          type: string
          title: X-Api-Key
        name: x-api-key
        in: header
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError