Automile ResourceOwnerExpenseReportRowContentV2 API

The ResourceOwnerExpenseReportRowContentV2 API from Automile — 2 operation(s) for resourceownerexpensereportrowcontentv2.

Operations 5

GET /v1/resourceowner/expensereportrowcontent/{expenseReportRowContentId} Get expense report row content #
PUT /v1/resourceowner/expensereportrowcontent/{expenseReportRowContentId} Updates the given expense report row content #
DELETE /v1/resourceowner/expensereportrowcontent/{expenseReportRowContentId} Removes the given expense report row content #
GET /v1/resourceowner/expensereportrowcontent Get all expense report row content belonging to a expense report row #
POST /v1/resourceowner/expensereportrowcontent Create an expense report row #

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-resourceownerexpensereportrowcontentv2-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-resourceownerexpensereportrowcontentv2-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner Expense Report Row Content V2 API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerExpenseReportRowContentV2
paths:
  /v1/resourceowner/expensereportrowcontent/{expenseReportRowContentId}:
    get:
      tags:
      - ResourceOwnerExpenseReportRowContentV2
      summary: Get expense report row content
      description: Only expense report row content that the user has access to are accessible.
      operationId: GetResourceExpenseReportRowContent
      parameters:
      - in: path
        name: expenseReportRowContentId
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The expense report row content is returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ExpenseReportRowContentModel'
            application/json:
              schema:
                $ref: '#/components/schemas/ExpenseReportRowContentModel'
            text/json:
              schema:
                $ref: '#/components/schemas/ExpenseReportRowContentModel'
        '500':
          description: Internal server error
      security:
      - oauth2: []
    put:
      tags:
      - ResourceOwnerExpenseReportRowContentV2
      summary: Updates the given expense report row content
      description: This will update the given expense report row content id with a new model.
      operationId: EditResourceOwnerExpenseReportRowContent
      parameters:
      - in: path
        name: expenseReportRowContentId
        description: The expense report row id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The expense report row content was saved
        '500':
          description: Internal server error
        '400':
          description: Bad request, could occur for a number of cases, see returned message
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '403':
          description: Request is forbidden, could occur for a number of reasons, see returned message
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '404':
          description: Not found, the expense report row you tried to update can't be found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExpenseReportRowContentEditModel'
          text/json:
            schema:
              $ref: '#/components/schemas/ExpenseReportRowContentEditModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ExpenseReportRowContentEditModel'
        description: The new expense report row model
    delete:
      tags:
      - ResourceOwnerExpenseReportRowContentV2
      summary: Removes the given expense report row content
      operationId: DeleteResourceOwnerExpenseReportRowContent
      parameters:
      - in: path
        name: expenseReportRowContentId
        description: The expense report row id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The expense report row has been deleted
        '500':
          description: Internal server error
        '403':
          description: Request is forbidden, could occur for a number of reasons, see returned message
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '404':
          description: Not found, the expense report row you tried to remove can't be found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
      security:
      - oauth2: []
  /v1/resourceowner/expensereportrowcontent:
    get:
      tags:
      - ResourceOwnerExpenseReportRowContentV2
      summary: Get all expense report row content belonging to a expense report row
      description: Only expense report row content that the user has access to are accessible.
      operationId: GetResourceExpenseReportRowContentById
      parameters:
      - in: query
        name: expenseReportRowId
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: A list of expense report row content is returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ExpenseReportRowContentModel'
            application/json:
              schema:
                $ref: '#/components/schemas/ExpenseReportRowContentModel'
            text/json:
              schema:
                $ref: '#/components/schemas/ExpenseReportRowContentModel'
        '500':
          description: Internal server error
      security:
      - oauth2: []
    post:
      tags:
      - ResourceOwnerExpenseReportRowContentV2
      summary: Create an expense report row
      description: ''
      operationId: CreateExpenseReportRowContent
      responses:
        '200':
          description: A header link containing the URL to the newly created resource
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExpenseReportRowContentCreateModel'
          text/json:
            schema:
              $ref: '#/components/schemas/ExpenseReportRowContentCreateModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ExpenseReportRowContentCreateModel'
components:
  schemas:
    ExpenseReportRowContentCreateModel:
      type: object
      properties:
        ExpenseReportRowId:
          format: int32
          type: integer
        Data:
          type: string
        ContentType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          type: integer
      additionalProperties: false
    ExpenseReportRowContentEditModel:
      type: object
      properties:
        Data:
          type: string
        ContentType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          type: integer
      additionalProperties: false
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
        title:
          type: string
        status:
          format: int32
          type: integer
        detail:
          type: string
        instance:
          type: string
      additionalProperties: {}
    ExpenseReportRowContentModel:
      type: object
      properties:
        ExpenseReportRowContentId:
          format: int32
          type: integer
        ExpenseReportRowId:
          format: int32
          type: integer
        ContentType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          type: integer
        ContentFileName:
          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