Skip to main content
GET
/
api
/
org
/
v1
/
orders
/
{id}
Get Order
curl --request GET \
  --url https://console.lomaplatform.com/api/org/v1/orders/{id} \
  --header 'API-Key: <api-key>'
{
  "id": "<string>",
  "price": 123,
  "status": "<string>",
  "product": {
    "id": "<string>",
    "name": "<string>"
  },
  "package": {
    "id": "<string>",
    "name": "<string>"
  },
  "vendor": {
    "id": "<string>",
    "name": "<string>"
  },
  "category": {
    "id": "<string>",
    "name": "<string>"
  },
  "locations": [
    {
      "id": "<string>",
      "name": "<string>",
      "primary": true,
      "external_id": "<string>",
      "address_line_1": "<string>",
      "address_city": "<string>",
      "address_state": "<string>",
      "address_zip": "<string>"
    }
  ],
  "kpis": [
    {
      "id": "<string>",
      "name": "<string>",
      "benchmark": 123,
      "value": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.lomaplatform.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

API-Key
string
header
required

API Key for the organization

Response

200 OK

id
string
required
price
number
required
status
string
required
product
object
required
package
object
required
vendor
object
required
category
object
required
locations
object[]
required
kpis
object[]
required