Skip to documentation
ClaimSoft integration

Search Purchase Orders

Perform Search Purchase Orders through ClaimSoft.

View as Markdown
claimsoft_search_purchase_orders
readclaimsoft

Inputs

  • search_text
    text
    Search Text

    Optional text value.

  • order_status
    multi_select
    Order Status

    Optional list of selected values.

    Default: ["2","3","4","6"]

    Options: Open ("2"), Due ("3"), Closed ("4"), Deleted ("6")

  • warehouses
    json
    Warehouses

    Optional JSON value.

  • patient_id
    expression
    Patient Id

    Optional literal value or workflow expression.

  • practitioner_id
    expression
    Practitioner Id

    Optional literal value or workflow expression.

  • date_from
    date
    Date From

    Optional date in YYYY-MM-DD format.

  • date_to
    date
    Date To

    Optional date in YYYY-MM-DD format.

  • filters
    json
    Filters

    Optional JSON value.

  • max_rows
    number
    Max Rows

    Optional numeric value.

    Default: 500

Outputs

  • server_returnedServer Returned
  • returnedReturned
  • client_truncatedClient Truncated
  • ordersOrders
  • inventory_urlInventory Url
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "properties": {
    "date_to": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "filters": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "max_rows": {
      "type": "number",
      "default": 500,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "date_from": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "warehouses": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "search_text": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "order_status": {
      "type": "array",
      "items": {
        "enum": [
          "2",
          "3",
          "4",
          "6"
        ],
        "type": "string"
      },
      "default": [
        "2",
        "3",
        "4",
        "6"
      ],
      "description": "Optional list of selected values.",
      "x-workflow-field-type": "multi_select"
    },
    "practitioner_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "orders": {},
    "returned": {},
    "inventory_url": {},
    "server_returned": {},
    "client_truncated": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions