Automile ResourceOwnerContent API

The ResourceOwnerContent API from Automile — 2 operation(s) for resourceownercontent.

Operations 2

POST /v1/resourceowner/content/upload Upload binary file #
GET /v1/resourceowner/content/download/{guid} Get a binary file content #

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/automile-resourceownercontent-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

automile-resourceownercontent-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner Content API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerContent
paths:
  /v1/resourceowner/content/upload:
    post:
      tags:
      - ResourceOwnerContent
      summary: Upload binary file
      description: Upload attachment image and returns url
      operationId: ResourceOwnerContentController_Upload
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ContentUploadResponseModel'
            application/json:
              schema:
                $ref: '#/components/schemas/ContentUploadResponseModel'
            text/json:
              schema:
                $ref: '#/components/schemas/ContentUploadResponseModel'
        '400':
          description: Missing or invalid data
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '406':
          description: Request is not properly formatted
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '500':
          description: Internal server error
        '201':
          description: Successfully uploaded
      security:
      - oauth2: []
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                ContentType:
                  type: string
                ContentDisposition:
                  type: string
                Headers:
                  type: string
                Length:
                  type: integer
                  format: int64
                Name:
                  type: string
                FileName:
                  type: string
  /v1/resourceowner/content/download/{guid}:
    get:
      tags:
      - ResourceOwnerContent
      summary: Get a binary file content
      operationId: ResourceOwnerContentController_Get
      parameters:
      - in: path
        name: guid
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The binary file is returned
      security:
      - oauth2: []
components:
  schemas:
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
        title:
          type: string
        status:
          format: int32
          type: integer
        detail:
          type: string
        instance:
          type: string
      additionalProperties: {}
    ContentUploadResponseModel:
      type: object
      properties:
        URL:
          type: string
        GUID:
          format: uuid
          type: string
      additionalProperties: false
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        implicit:
          scopes:
            read: Read access to protected resources
            write: Write access to protected resources
          authorizationUrl: https://api.automile.com/login/
      description: OAuth2 Implicit Grant