Oneschema SFTP Accounts API

SFTP Accounts

Operations 4

POST /v0/sftp-accounts Create SFTP Account #
GET /v0/sftp-accounts List SFTP Accounts #
DELETE /v0/sftp-accounts/{sftp-account-id} Delete SFTP Account #
GET /v0/sftp-accounts/{sftp-account-id} Get SFTP Account #

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/oneschema-sftp-accounts-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 email required.

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

OpenAPI Specification

oneschema-sftp-accounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OneSchema AWS Secrets Manager AWS Secrets Manager Accounts SFTP Accounts API
  version: '1'
  description: Configure AWS Secrets Manager account connections and managed secret references for use in Multi FileFeeds.
  contact:
    name: OneSchema Support
    email: support@oneschema.co
  termsOfService: https://www.oneschema.co/terms-and-conditions
  license:
    name: proprietary
    url: https://www.oneschema.co/terms-and-conditions
servers:
- url: https://api.oneschema.co
  description: Production server (hosted in the US)
- url: https://api.eu.oneschema.co
  description: Production server (hosted in the EU)
- url: https://api.ca.oneschema.co
  description: Production server (hosted in Canada)
- url: https://api.au.oneschema.co
  description: Production server (hosted in Australia)
security:
- ApiKeyAuth: []
tags:
- name: SFTP Accounts
  description: SFTP Accounts
paths:
  /v0/sftp-accounts:
    post:
      operationId: create-sftp-account
      summary: Create SFTP Account
      description: Create a new SFTP Account.
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/sftp-account-resource'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error-response'
      tags:
      - SFTP Accounts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/sftp-account-post-request'
    get:
      operationId: list-sftp-accounts
      summary: List SFTP Accounts
      description: Returns a list of SFTP Accounts for the organization.
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/sftp-account-resource'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error-response'
      tags:
      - SFTP Accounts
  /v0/sftp-accounts/{sftp-account-id}:
    delete:
      operationId: delete-sftp-account
      summary: Delete SFTP Account
      description: Delete a specific SFTP Account.
      parameters:
      - name: sftp-account-id
        in: path
        required: true
        description: The ID of the SFTP Account
        schema:
          type: integer
      responses:
        '200':
          description: 'Successful response. The primary way to verify the request''s success or failure is the response status code.

            In a future API version this endpoint may not return any response body at all.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/delete-sftp-account-response'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error-response'
      tags:
      - SFTP Accounts
    get:
      operationId: get-sftp-account
      summary: Get SFTP Account
      description: Get a specific SFTP Account.
      parameters:
      - name: sftp-account-id
        in: path
        required: true
        description: The ID of the SFTP Account
        schema:
          type: integer
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/sftp-account-resource'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error-response'
      tags:
      - SFTP Accounts
components:
  schemas:
    error-response:
      type: object
      properties:
        error:
          type: string
    sftp-account-resource:
      type: object
      properties:
        name:
          type: string
          description: The name of the SFTP Account
        host:
          type: string
          description: The SFTP server host address
        port:
          type: integer
          minimum: 1
          maximum: 65535
          description: The SFTP server port number (defaults to 22)
          default: 22
        username:
          type: string
          description: The user that should be used to connect to the SFTP server
        id:
          type: integer
        has_password:
          type: boolean
        has_ssh_private_key:
          type: boolean
    delete-sftp-account-response:
      type: object
      properties:
        success:
          type: boolean
    sftp-account-post-request:
      type: object
      required:
      - name
      - host
      - username
      - credentials
      properties:
        name:
          type: string
          description: The name of the SFTP Account
        host:
          type: string
          description: The SFTP server host address
        port:
          type: integer
          minimum: 1
          maximum: 65535
          description: The SFTP server port number (defaults to 22)
          default: 22
        username:
          type: string
          description: The user that should be used to connect to the SFTP server
        credentials:
          oneOf:
          - $ref: '#/components/schemas/sftp-account-password'
          - $ref: '#/components/schemas/sftp-account-ssh-private-key'
          description: One of password or ssh_private_key is required
          type: object
    sftp-account-password:
      type: object
      required:
      - password
      properties:
        password:
          type: string
    sftp-account-ssh-private-key:
      type: object
      required:
      - ssh_private_key
      properties:
        ssh_private_key:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY