Automile ResourceOwnerRegisteredTollV2 API

The ResourceOwnerRegisteredTollV2 API from Automile — 4 operation(s) for resourceownerregisteredtollv2.

Operations 7

GET /v1/resourceowner/registeredtoll Get list of registered tolls #
POST /v1/resourceowner/registeredtoll Register a toll passage #
PUT /v1/resourceowner/registeredtoll/multi-update Update multiple toll passage registrations #
PUT /v1/resourceowner/registeredtoll/{registeredTollId} Update a toll passage #
GET /v1/resourceowner/registeredtoll/{registeredTollId} Get registered toll #
DELETE /v1/resourceowner/registeredtoll/{registeredTollId} Delete registered toll fee #
GET /v1/resourceowner/registeredtoll/tollzone Get the list of toll zones #

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-resourceownerregisteredtollv2-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-resourceownerregisteredtollv2-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner Registered Toll V2 API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerRegisteredTollV2
paths:
  /v1/resourceowner/registeredtoll:
    get:
      tags:
      - ResourceOwnerRegisteredTollV2
      summary: Get list of registered tolls
      operationId: ResourceOwnerRegisteredTollController_GetRegisteredTollList
      parameters:
      - in: query
        name: from
        description: 'Registered tolls from this timestamp (default: 60 days back)'
        schema:
          type: string
          format: date-time
      - in: query
        name: to
        description: 'Registered tolls until this timestamp (default: current timestamp)'
        schema:
          type: string
          format: date-time
      - in: query
        name: vehicleId
        description: 'If set, only list tolls registered for this specific vehicle (default: all accessible vehicles)'
        schema:
          type: integer
          format: int32
      - in: query
        name: driverContactId
        description: 'If set, only list tolls registered for this specific driver (default: all drivers)'
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Registered toll list successfully fetched
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RegisteredTollModelGET'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RegisteredTollModelGET'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RegisteredTollModelGET'
        '403':
          description: Forbidden access to resource
        '500':
          description: Internal server error
      security:
      - oauth2: []
    post:
      tags:
      - ResourceOwnerRegisteredTollV2
      summary: Register a toll passage
      operationId: ResourceOwnerRegisteredTollController_SaveRegisteredToll
      responses:
        '200':
          description: Success
        '201':
          description: Successfully created
        '403':
          description: Forbidden access to resource
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RegisteredTollModelPOST'
          text/json:
            schema:
              $ref: '#/components/schemas/RegisteredTollModelPOST'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RegisteredTollModelPOST'
        description: Toll fee to register
  /v1/resourceowner/registeredtoll/multi-update:
    put:
      tags:
      - ResourceOwnerRegisteredTollV2
      summary: Update multiple toll passage registrations
      operationId: ResourceOwnerRegisteredTollController_UpdateRegisteredTollList
      responses:
        '200':
          description: Successfully updated
        '403':
          description: Forbidden access to resource
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RegisteredTollBatchUpdateModelPUT'
          text/json:
            schema:
              $ref: '#/components/schemas/RegisteredTollBatchUpdateModelPUT'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RegisteredTollBatchUpdateModelPUT'
        description: Toll fee registration list
  /v1/resourceowner/registeredtoll/{registeredTollId}:
    put:
      tags:
      - ResourceOwnerRegisteredTollV2
      summary: Update a toll passage
      operationId: ResourceOwnerRegisteredTollController_UpdateRegisteredToll
      parameters:
      - in: path
        name: registeredTollId
        description: Which toll fee to edit
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Successfully updated
        '403':
          description: Forbidden access to resource
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RegisteredTollModelPUT'
          text/json:
            schema:
              $ref: '#/components/schemas/RegisteredTollModelPUT'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RegisteredTollModelPUT'
        description: Toll fee information
    get:
      tags:
      - ResourceOwnerRegisteredTollV2
      summary: Get registered toll
      operationId: ResourceOwnerRegisteredTollController_GetRegisteredToll
      parameters:
      - in: path
        name: registeredTollId
        description: Id of registered toll
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Registered toll list successfully fetched
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/RegisteredTollModelGET'
            application/json:
              schema:
                $ref: '#/components/schemas/RegisteredTollModelGET'
            text/json:
              schema:
                $ref: '#/components/schemas/RegisteredTollModelGET'
        '403':
          description: Forbidden access to resource
        '500':
          description: Internal server error
      security:
      - oauth2: []
    delete:
      tags:
      - ResourceOwnerRegisteredTollV2
      summary: Delete registered toll fee
      operationId: ResourceOwnerRegisteredTollController_DeleteRegisteredToll
      parameters:
      - in: path
        name: registeredTollId
        description: The id for the registered toll to delete
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Registered toll list successfully deleted
        '403':
          description: Forbidden access to resource
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/registeredtoll/tollzone:
    get:
      tags:
      - ResourceOwnerRegisteredTollV2
      summary: Get the list of toll zones
      operationId: ResourceOwnerRegisteredTollController_GetTollZoneList
      responses:
        '200':
          description: Toll zone list successfully fetched
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TollZoneModelGET'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TollZoneModelGET'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TollZoneModelGET'
        '403':
          description: Forbidden access to resource
        '500':
          description: Internal server error
      security:
      - oauth2: []
components:
  schemas:
    RegisteredTollModelGET:
      type: object
      properties:
        TimestampUtc:
          format: date-time
          type: string
        Fee:
          format: double
          type: number
        TripId:
          format: int32
          type: integer
        GeofenceId:
          format: int32
          type: integer
        TollZoneId:
          format: int32
          type: integer
        PriceAfterDiscount:
          format: double
          type: number
        TollZoneName:
          type: string
        RegisteredTollId:
          format: int32
          type: integer
        VehicleId:
          format: int32
          type: integer
        VehicleUserFriendlyName:
          type: string
        VehicleMake:
          type: string
        VehicleModel:
          type: string
        VehicleNumberPlate:
          type: string
        DriverContactId:
          format: int32
          type: integer
        DriverImageUrl:
          type: string
        DriverName:
          type: string
        CurrencyISO4271:
          type: string
        ReadOnly:
          type: boolean
        TripType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          type: integer
      additionalProperties: false
    RegisteredTollModelPOST:
      type: object
      properties:
        TimestampUtc:
          format: date-time
          type: string
        Fee:
          format: double
          type: number
        TripId:
          format: int32
          type: integer
        GeofenceId:
          format: int32
          type: integer
        TollZoneId:
          format: int32
          type: integer
        PriceAfterDiscount:
          format: double
          type: number
      additionalProperties: false
    RegisteredTollModelPUT:
      type: object
      properties:
        TimestampUtc:
          format: date-time
          type: string
        Fee:
          format: double
          type: number
        TripId:
          format: int32
          type: integer
        GeofenceId:
          format: int32
          type: integer
        TollZoneId:
          format: int32
          type: integer
        PriceAfterDiscount:
          format: double
          type: number
      additionalProperties: false
    TollZoneModelGET:
      type: object
      properties:
        TollZoneId:
          format: int32
          type: integer
        Name:
          type: string
        TollGeofenceList:
          type: array
          items:
            $ref: '#/components/schemas/TollGeofenceModelGET'
      additionalProperties: false
    RegisteredTollBatchUpdateModelPUT:
      type: object
      properties:
        RegisteredTollList:
          type: array
          items:
            $ref: '#/components/schemas/RegisteredTollMultiEditModelPUT'
      additionalProperties: false
    RegisteredTollMultiEditModelPUT:
      type: object
      properties:
        TimestampUtc:
          format: date-time
          type: string
        Fee:
          format: double
          type: number
        TripId:
          format: int32
          type: integer
        GeofenceId:
          format: int32
          type: integer
        TollZoneId:
          format: int32
          type: integer
        PriceAfterDiscount:
          format: double
          type: number
        RegisteredTollId:
          format: int32
          type: integer
      additionalProperties: false
    TollGeofenceModelGET:
      type: object
      properties:
        GeofenceId:
          format: int32
          type: integer
        Name:
          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