Modern Treasury · Schema

account_collection_flow_update_request

FintechPaymentsACHWiresTreasury

Properties

Name Type Description
status string Required. The updated status of the account collection flow. Can only be used to mark a flow as `cancelled`.
View JSON Schema on GitHub

JSON Schema

modern-treasury-account-collection-flow-update-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/account_collection_flow_update_request",
  "title": "account_collection_flow_update_request",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "cancelled"
      ],
      "description": "Required. The updated status of the account collection flow. Can only be used to mark a flow as `cancelled`."
    }
  },
  "required": [
    "status"
  ]
}