Jones Lang LaSalle Work Orders API

Create and manage work orders for facility maintenance.

Operations 2

POST /query/WorkOrder Query work orders #
POST /command/WorkOrder Create a work order #

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/jones-lang-lasalle-work-orders-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

jones-lang-lasalle-work-orders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: JLL Corrigo Enterprise REST Assets Work Orders API
  description: The JLL Corrigo Enterprise REST API provides programmatic access to JLL Technologies' cloud-based facility management platform. The API enables integration with work order management, asset tracking, procurement, billing, and vendor management systems.
  version: '1.0'
servers:
- url: https://am-ce98c.corrigo.com/api/v1
tags:
- name: Work Orders
  description: Create and manage work orders for facility maintenance.
paths:
  /query/WorkOrder:
    post:
      operationId: queryWorkOrders
      summary: Query work orders
      description: Retrieves a filtered list of work orders from the Corrigo Enterprise platform based on specified query criteria.
      tags:
      - Work Orders
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                filter:
                  type: string
                orderBy:
                  type: string
                top:
                  type: integer
      responses:
        '200':
          description: Success
  /command/WorkOrder:
    post:
      operationId: createWorkOrder
      summary: Create a work order
      description: Creates a new work order in the Corrigo Enterprise system for facility maintenance or service requests.
      tags:
      - Work Orders
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                entity:
                  type: object
                  properties:
                    TypeCategory:
                      type: string
                    PriorityId:
                      type: integer
                    Description:
                      type: string
      responses:
        '200':
          description: Work order created successfully
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer