Farmers Edge labcommand API

The labcommand API from Farmers Edge — 3 operation(s) for labcommand.

Operations 3

POST /labcommand/create-user Create a FarmCommand Client with LabCommand User role. #
POST /labcommand/password/reset Processes a password reset request for a client. #
POST /labcommand/token-login #

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/farmers-edge-labcommand-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

farmers-edge-labcommand-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FarmCommand canplug Labcommand API
  termsOfService: https://www.farmcommand.com/terms-of-service
  contact:
    name: Product Support
    email: productsupport@farmersedge.ca
  version: '1.0'
servers:
- url: https://admin.farmcommand.com/
security:
- FarmCommand Token: []
tags:
- name: labcommand
paths:
  /labcommand/create-user:
    parameters: []
    post:
      operationId: labcommand_create-user_create
      summary: Create a FarmCommand Client with LabCommand User role.
      description: 'Add a LabCommand User client to the system.


        Creates a LabCommand User client in the system and assigns it the role ''LabCommand User''.

        Returns the username and token upon successful creation.


        This operation also creates a ClientBillingAddress and Contact (for phone and email)

        for the user.'
      responses:
        '201':
          description: User Created
          content:
            application/json:
              schema:
                type: object
                properties:
                  username:
                    type: string
                  token:
                    type: string
        '400':
          description: Bad request
      tags:
      - labcommand
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ClientBillingAddressCreate'
        required: true
  /labcommand/password/reset:
    parameters: []
    post:
      operationId: labcommand_password_reset_create
      summary: Processes a password reset request for a client.
      description: 'This method checks if a client exists for the given identifier (email or username)

        and sends a password reset email if the client is valid.

        If the client is not found or an error occurs in sending the email,

        it returns an appropriate error response.'
      responses:
        '200':
          description: Success
        '404':
          description: Client not found
        '400':
          description: Bad request
      tags:
      - labcommand
      requestBody:
        content:
          application/json:
            schema:
              required:
              - identifier
              - url
              type: object
              properties:
                identifier:
                  description: The username or email of a user
                  type: string
                url:
                  description: The url you would like used to reset the password with. /password/reset/<token> will be appended to the url passed in. eg. "https://admin.farmcommand.com"
                  type: string
                timezone:
                  description: The user's timezone
                  type: string
        required: true
  /labcommand/token-login:
    parameters: []
    post:
      operationId: labcommand_token-login_create
      description: Token login for LabCommand users, returns token if logged in successfully
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                required:
                - password
                - username
                type: object
                properties:
                  username:
                    type: string
                  password:
                    type: string
      tags:
      - labcommand
      requestBody:
        content:
          application/json:
            schema:
              required:
              - password
              - username
              type: object
              properties:
                username:
                  type: string
                password:
                  type: string
        required: true
components:
  schemas:
    ClientBillingAddressCreate:
      required:
      - first_name
      - last_name
      - username
      - farm_name
      - email
      - country
      - address_line1
      - postal_or_zip_code
      - city
      - province_state
      - phone
      - password
      type: object
      properties:
        id:
          title: Id
          type: integer
          readOnly: true
        client_id:
          title: Client id
          type: integer
          readOnly: true
        first_name:
          title: First name
          type: string
          minLength: 1
        last_name:
          title: Last name
          type: string
          minLength: 1
        username:
          title: Username
          type: string
          minLength: 1
        units:
          title: Units
          type: string
          minLength: 1
        farm_name:
          title: Farm name
          type: string
          minLength: 1
        email:
          title: Email
          type: string
          format: email
          maxLength: 254
          minLength: 1
        country:
          title: Country
          type: string
          enum:
          - Canada
          - USA
          - Brazil
        address_line1:
          title: Address line1
          type: string
          maxLength: 500
          minLength: 1
        address_line2:
          title: Address line2
          type: string
          maxLength: 500
        postal_or_zip_code:
          title: Postal or zip code
          type: string
          maxLength: 25
          minLength: 1
        city:
          title: City
          type: string
          maxLength: 100
          minLength: 1
        province_state:
          title: Province state
          type: string
          maxLength: 100
          minLength: 1
        lat:
          title: Lat
          type:
          - number
          - 'null'
        lon:
          title: Lon
          type:
          - number
          - 'null'
        phone:
          title: Phone
          type: string
          maxLength: 30
          minLength: 1
        mobile_phone:
          title: Mobile phone
          type: string
          maxLength: 30
        is_invoice_enabled:
          title: Is invoice enabled
          type: string
          readOnly: true
        created_by:
          title: Created by
          type:
          - integer
          - 'null'
          readOnly: true
        password:
          title: Password
          type: string
          minLength: 1
  securitySchemes:
    FarmCommand_Token:
      type: apiKey
      name: token
      in: query