Automile ClientTextMessage API

The ClientTextMessage API from Automile — 2 operation(s) for clienttextmessage.

Operations 2

POST /v1/client/textmessages/createpin Create and send pin code to login with #
POST /v1/client/textmessages/validatepin Validate Pin Code #

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-clienttextmessage-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-clienttextmessage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Client Text Message API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ClientTextMessage
paths:
  /v1/client/textmessages/createpin:
    post:
      tags:
      - ClientTextMessage
      summary: Create and send pin code to login with
      operationId: CreatePinCode
      responses:
        '200':
          description: The Pin code have been sent
        '400':
          description: Format error on phonenumber, To many SMS or no match on phonenumber
          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/CreatePinModel'
          text/json:
            schema:
              $ref: '#/components/schemas/CreatePinModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/CreatePinModel'
  /v1/client/textmessages/validatepin:
    post:
      tags:
      - ClientTextMessage
      summary: Validate Pin Code
      operationId: ValidatePinCode
      responses:
        '200':
          description: User logged in/User created and a user token returned in response
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/TokenResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/TokenResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/TokenResponse'
        '400':
          description: Can't assoicate given username to a user
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '403':
          description: Too many password attempts
          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/ValidatePinModel'
          text/json:
            schema:
              $ref: '#/components/schemas/ValidatePinModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ValidatePinModel'
components:
  schemas:
    CreatePinModel:
      type: object
      properties:
        UserName:
          type: string
        MobilePhoneNumber:
          type: string
        UserGuid:
          format: uuid
          type: string
        Culture:
          type: string
      additionalProperties: false
    ValidatePinModel:
      type: object
      properties:
        UserName:
          type: string
        Pin:
          type: string
        UserGuid:
          format: uuid
          type: string
      additionalProperties: false
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
        title:
          type: string
        status:
          format: int32
          type: integer
        detail:
          type: string
        instance:
          type: string
      additionalProperties: {}
    TokenResponse:
      description: The token response
      type: object
      properties:
        UserName:
          type: string
        AccessToken:
          type: string
        ExpiresInSeconds:
          format: double
          type: number
        IssuedUtc:
          format: date-time
          type: string
        ExpiresUtc:
          format: date-time
          type: string
        RefreshToken:
          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