Skip to documentation
ClaimSoft integration

Upload Purchase Order Document

Perform Upload Purchase Order Document through ClaimSoft.

View as Markdown
claimsoft_upload_purchase_order_document
writeclaimsoft

Inputs

  • purchase_order_id
    expressionrequired
    Purchase Order Id

    Required literal value or workflow expression.

  • document_id
    expressionrequired
    Document Id

    Required literal value or workflow expression.

  • filename
    expression
    Filename

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • purchase_order_idPurchase Order Id
  • filenameFilename
  • size_bytesSize Bytes
  • verification_statusVerification Status
  • documents_totalDocuments Total
  • documentsDocuments
  • inventory_urlInventory Url
  • messageMessage
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

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

Input schema
{
  "type": "object",
  "required": [
    "purchase_order_id",
    "document_id"
  ],
  "properties": {
    "filename": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "purchase_order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "success": {},
    "filename": {},
    "documents": {},
    "size_bytes": {},
    "inventory_url": {},
    "documents_total": {},
    "purchase_order_id": {},
    "verification_status": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions