Procurify · Schema

VendorRead

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
name string Name of the vendor
active boolean
addressLineOne string First line of address
addressLineTwo string Second line of address
postalCode string Postal or Zip code of the vendor
city string City of the vendor
state_province string State or Province of the vendor
country string Country of the vendor
phoneOne string Primary phone no. of the vendor
phoneTwo string Secondary phone no. of the vendor
fax string Fax no. of the vendor
email array
comments string Notes about the vendor
contact string Contact person of the vendor
url string Website of the vendor
external_id string External id of the vendor
dateModified string
currency integer
payment_term_ref object
shipping_term_ref object
payment_method_ref object
shipping_method_ref object
payment_methods array
tax integer
type object
default_payment_method integer
creditcards array
is_1099_eligible boolean
overall_score number
is_auto_email_po_enabled boolean
po_pdf_labels string Placeholder for a KVStore value
email_configurations object
View JSON Schema on GitHub

JSON Schema

vendorread.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VendorRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "description": "Name of the vendor",
      "maxLength": 150
    },
    "active": {
      "type": "boolean"
    },
    "addressLineOne": {
      "type": "string",
      "nullable": true,
      "title": "Address line 1",
      "description": "First line of address",
      "maxLength": 300
    },
    "addressLineTwo": {
      "type": "string",
      "nullable": true,
      "title": "Address line 2",
      "description": "Second line of address",
      "maxLength": 300
    },
    "postalCode": {
      "type": "string",
      "nullable": true,
      "title": "Postal Code",
      "description": "Postal or Zip code of the vendor",
      "maxLength": 20
    },
    "city": {
      "type": "string",
      "nullable": true,
      "description": "City of the vendor",
      "maxLength": 50
    },
    "state_province": {
      "type": "string",
      "nullable": true,
      "title": "State/Province",
      "description": "State or Province of the vendor",
      "maxLength": 40
    },
    "country": {
      "type": "string",
      "nullable": true,
      "description": "Country of the vendor",
      "maxLength": 80
    },
    "phoneOne": {
      "type": "string",
      "nullable": true,
      "description": "Primary phone no. of the vendor",
      "maxLength": 20
    },
    "phoneTwo": {
      "type": "string",
      "nullable": true,
      "description": "Secondary phone no. of the vendor",
      "maxLength": 20
    },
    "fax": {
      "type": "string",
      "nullable": true,
      "description": "Fax no. of the vendor",
      "maxLength": 20
    },
    "email": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "email"
      }
    },
    "comments": {
      "type": "string",
      "nullable": true,
      "description": "Notes about the vendor"
    },
    "contact": {
      "type": "string",
      "nullable": true,
      "description": "Contact person of the vendor",
      "maxLength": 50
    },
    "url": {
      "type": "string",
      "nullable": true,
      "description": "Website of the vendor",
      "maxLength": 200
    },
    "external_id": {
      "type": "string",
      "nullable": true,
      "description": "External id of the vendor",
      "maxLength": 100
    },
    "dateModified": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "currency": {
      "type": "integer",
      "nullable": true
    },
    "payment_term_ref": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaymentTerm"
        }
      ],
      "nullable": true,
      "type": "object"
    },
    "shipping_term_ref": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ShippingTerm"
        }
      ],
      "nullable": true,
      "type": "object"
    },
    "payment_method_ref": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaymentMethod"
        }
      ],
      "nullable": true,
      "type": "object"
    },
    "shipping_method_ref": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ShippingMethod"
        }
      ],
      "nullable": true,
      "type": "object"
    },
    "payment_methods": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PaymentMethodRead"
      },
      "readOnly": true
    },
    "tax": {
      "type": "integer",
      "nullable": true
    },
    "type": {
      "$ref": "#/components/schemas/VendorTypeEnum"
    },
    "default_payment_method": {
      "type": "integer",
      "nullable": true
    },
    "creditcards": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CreditCard"
      },
      "readOnly": true
    },
    "is_1099_eligible": {
      "type": "boolean",
      "nullable": true,
      "title": "1099 Eligible?"
    },
    "overall_score": {
      "type": "number",
      "format": "double",
      "nullable": true,
      "readOnly": true
    },
    "is_auto_email_po_enabled": {
      "type": "boolean"
    },
    "po_pdf_labels": {
      "type": "string",
      "description": "Placeholder for a KVStore value",
      "maxLength": 200
    },
    "email_configurations": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/EmailConfiguration"
      }
    }
  },
  "required": [
    "name",
    "type"
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/vendorread"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.