Automile ResourceOwnerTaskMessage API

The ResourceOwnerTaskMessage API from Automile — 2 operation(s) for resourceownertaskmessage.

Operations 3

GET /v1/resourceowner/taskmessage/{taskMessageId} Get a task message #
PUT /v1/resourceowner/taskmessage/{taskMessageId} Update a task message #
POST /v1/resourceowner/taskmessage Create a task message #

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-resourceownertaskmessage-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-resourceownertaskmessage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner Task Message API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerTaskMessage
paths:
  /v1/resourceowner/taskmessage/{taskMessageId}:
    get:
      tags:
      - ResourceOwnerTaskMessage
      summary: Get a task message
      operationId: GetResourceOwnerTaskMessage
      parameters:
      - in: path
        name: taskMessageId
        description: The Id of the task message
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The task message details are returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/TaskMessageModel'
            application/json:
              schema:
                $ref: '#/components/schemas/TaskMessageModel'
            text/json:
              schema:
                $ref: '#/components/schemas/TaskMessageModel'
        '500':
          description: Internal server error
        '403':
          description: Not authorized to task message
      security:
      - oauth2: []
    put:
      tags:
      - ResourceOwnerTaskMessage
      summary: Update a task message
      description: Only tasks that belongs to the user has access can be updated.
      operationId: UpdateResourceOwnerTaskMessage
      parameters:
      - in: path
        name: taskMessageId
        description: The task id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The task was saved
        '500':
          description: Internal server error
        '403':
          description: Not authorized to task message
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaskMessageEditModel'
          text/json:
            schema:
              $ref: '#/components/schemas/TaskMessageEditModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/TaskMessageEditModel'
        description: The task model
  /v1/resourceowner/taskmessage:
    post:
      tags:
      - ResourceOwnerTaskMessage
      summary: Create a task message
      operationId: CreateResourceOwnerTaskMessage
      responses:
        '200':
          description: A link in the header is returned to the newly created task message
        '500':
          description: Internal server error
        '403':
          description: Not authorized to task message
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaskMessageCreateModel'
          text/json:
            schema:
              $ref: '#/components/schemas/TaskMessageCreateModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/TaskMessageCreateModel'
        description: The TaskMessageCreateModel
components:
  schemas:
    PositionModel:
      type: object
      properties:
        Longitude:
          format: double
          type: number
        Latitude:
          format: double
          type: number
      additionalProperties: false
    TaskMessageEditModel:
      type: object
      properties:
        IsRead:
          type: boolean
      additionalProperties: false
    TaskMessageModel:
      type: object
      properties:
        TaskMessageId:
          format: int32
          type: integer
        SentByContactId:
          format: int32
          type: integer
        ToContactId:
          format: int32
          type: integer
        MessageText:
          type: string
        MessageSentAtUtc:
          format: date-time
          type: string
        SentByContactName:
          type: string
        ToContactName:
          type: string
        MessageIsRead:
          type: boolean
        Position:
          $ref: '#/components/schemas/PositionModel'
      additionalProperties: false
    TaskMessageCreateModel:
      type: object
      properties:
        TaskId:
          format: int32
          type: integer
        MessageText:
          type: string
        Position:
          $ref: '#/components/schemas/PositionModel'
      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