Procurify · Schema

CompanyPaymentMethodRequest

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
name string
type object
data object
currency integer
gl_code string
View JSON Schema on GitHub

JSON Schema

companypaymentmethodrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CompanyPaymentMethodRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 255
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaymentMethodTypeEnum"
        }
      ],
      "title": "Payment Method",
      "minimum": 0,
      "maximum": 4294967295
    },
    "data": {},
    "currency": {
      "type": "integer"
    },
    "gl_code": {
      "type": "string",
      "maxLength": 100
    }
  },
  "required": [
    "data"
  ]
}