Agora Data Uploads API

The Uploads API from Agora Data — 1 operation(s) for uploads.

OpenAPI Specification

agora-data-uploads-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fast Uploads API
  version: 0.1.0
tags:
- name: Uploads
paths:
  /api/v1/uploads/{api_activity_uuid}:
    get:
      summary: Loan Upload Status
      operationId: loan_upload_status_api_v1_uploads__api_activity_uuid__get
      parameters:
      - required: true
        schema:
          type: string
          title: Api Activity Uuid
        name: api_activity_uuid
        in: path
      - required: false
        schema:
          title: Account Uuid And Id
        name: account_uuid_and_id
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Uploads
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
servers:
- url: https://api.agoradata.com
  description: Base URL reconciled from apis.yml