OneRail Bulk Uploads API

The Bulk Uploads API from OneRail — 2 operation(s) for bulk uploads.

Operations 2

GET /v1/organization/{organizationId}/file-uploads Gets the file uploads in relation to a provided organization id #
GET /v1/file-upload/{fileUploadId} Gets information related to a specific file uploads #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/onerail-bulk-uploads-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

onerail-bulk-uploads-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Onerail Bulk Uploads API
  version: 1.0.0
  license:
    name: UNLICENSED
    url: ''
  description: 'Operations tagged Bulk Uploads across 2 of this provider''s published API definitions: onerail-bulk-uploads-api-openapi.yml, onerail-operations-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: /
  description: Default relative server URL
security:
- bearer: []
tags:
- name: Bulk Uploads
paths:
  /v1/organization/{organizationId}/file-uploads:
    parameters:
    - name: organizationId
      in: path
      description: organization id
      required: true
      schema:
        type: string
    - name: offset
      in: query
      description: Number of items to skip before returning the results.
      required: true
      schema:
        type: integer
        minimum: 0
        default: 0
    - name: limit
      in: query
      description: Maximum number of items to return.
      required: true
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 20
    - name: sortby
      in: query
      description: Field to sort by
      required: false
      schema:
        type: string
    - name: status
      in: query
      description: status filter
      required: false
      schema:
        type: array
        items:
          type: string
          enum:
          - partial
          - failed
          - succeeded
    - name: rangeType
      in: query
      description: date range type
      required: false
      schema:
        type: string
    - name: startOn
      in: query
      description: daterange starts on
      required: false
      schema:
        type: string
    - name: endOn
      in: query
      description: date range ends on
      required: false
      schema:
        type: string
    - name: order
      in: query
      description: Sort order
      required: false
      schema:
        type: string
        default: DESC
        enum:
        - ASC
        - DESC
    - name: entityType
      in: query
      description: Entity type to show
      required: false
      schema:
        type: array
        items:
          type: string
          enum:
          - order
          - product
          - marketModifier
          - location
          - customerLocation
    get:
      x-exegesis-controller: Organization
      summary: Gets the file uploads in relation to a provided organization id
      operationId: getAllFileUploadsForOrganization
      tags:
      - Bulk Uploads
      responses:
        '200':
          description: Success.
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/paths/~1v1~1api-auths/get/responses/200/content/application~1json/schema/allOf/0'
                - type: object
                  properties:
                    data:
                      type: array
                      items:
                        $ref: '#/paths/~1v1~1file-upload~1%7BfileUploadId%7D/get/responses/200/headers/application~1json/schema'
        default:
          $ref: '#/paths/~1v1~1routes/get/responses/404'
    servers:
    - url: /
      description: Default relative server URL
  /v1/file-upload/{fileUploadId}:
    parameters:
    - name: fileUploadId
      in: path
      description: file id
      required: true
      schema:
        type: string
    get:
      x-exegesis-controller: FileUpload
      summary: Gets information related to a specific file uploads
      operationId: getFileUpload
      tags:
      - Bulk Uploads
      responses:
        '200':
          description: Success.
          headers:
            application/json:
              schema:
                type: object
                description: File upload status
                required:
                - fileName
                properties:
                  id:
                    type: string
                    format: uuid
                  fileName:
                    type: string
                  fileSize:
                    type: integer
                    format: int32
                  status:
                    type: string
                    enum:
                    - processing
                    - succeeded
                    - failed
                    - partial
                  successCount:
                    type: integer
                    format: int32
                  failureCount:
                    type: integer
                    format: int32
                  orderCount:
                    type: integer
                    format: int32
                  deliveryCount:
                    type: integer
                    format: int32
                  createdAt:
                    type: string
                    format: date-time
                  updatedAt:
                    type: string
                    format: date-time
                  entity:
                    type: string
                    enum:
                    - order
                    - product
                    - marketModifier
                  organizationId:
                    type: string
                    format: uuid
                  userId:
                    type: string
                    format: uuid
        default:
          $ref: '#/paths/~1v1~1routes/get/responses/404'
    servers:
    - url: /
      description: Default relative server URL
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: 'Standard JWT bearer token used for authenticated OmniPoint users

        and internal service-to-service calls. Clients send `Authorization: Bearer <jwt>`

        and the token is validated using the shared Core access token secret.

        '
    ApiKey:
      type: apiKey
      in: header
      name: X-ONERAIL-API-KEY
      description: 'Shared secret key used for machine-to-machine integrations. Must be sent

        together with `X-ONERAIL-APP-ID` and is validated against the stored ApiAuth

        record for that application.

        '
    AppId:
      type: apiKey
      in: header
      name: X-ONERAIL-APP-ID
      description: 'Application identifier (UUID) that pairs with `X-ONERAIL-API-KEY` for

        machine-to-machine integrations. Both headers are required for ApiKey-based

        authentication.

        '
    OAuth:
      type: oauth2
      description: 'OAuth 2.0 access token validated by the Operations service (e.g. Okta-backed

        integrations). Clients obtain tokens from their own IdP outside of this API

        and call endpoints with `Authorization: OAuth <access_token>`. The

        `authorizationUrl` and `tokenUrl` values below are placeholders only to

        satisfy the OpenAPI schema; this service does not call them directly and the

        real IdP URLs are configured via environment and introspection logic in code.

        '
      flows:
        authorizationCode:
          authorizationUrl: https://dummy-unused-url.com
          tokenUrl: https://dummy-unused-url.com
          scopes: {}
x-refined-from:
- onerail-bulk-uploads-api-openapi.yml
- onerail-operations-api-openapi.yml