Lithic · Schema

Update Bulk Order Request

Request to update a bulk order, primarily to lock it

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
status string Status to update the bulk order to. Use LOCKED to finalize the order
View JSON Schema on GitHub

JSON Schema

lithic-update-bulk-order-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/update-bulk-order-request",
  "title": "Update Bulk Order Request",
  "description": "Request to update a bulk order, primarily to lock it",
  "type": "object",
  "properties": {
    "status": {
      "description": "Status to update the bulk order to. Use LOCKED to finalize the order",
      "enum": [
        "LOCKED"
      ],
      "type": "string"
    }
  },
  "required": [
    "status"
  ]
}