A vendor is a person or organization that sells goods or services to a company.
The Vendor object
Property | Type | Description |
---|---|---|
id | string | Unique identifier for the vendor. |
vendor_name | string | Company name of the vendor as recorded in the accounting system. |
contact_name | string | Contact name associated with the vendor. |
string | Email address for the vendor. | |
website | string | Website of the vendor. |
currency | string | The ISO-4217 currency code |
phone | string | Phone number of the vendor. |
addresses | object[] | Array of addresses associated with the vendor |
registration_number | string | Official company registration/business number. |
tax_numbers | string | Vendor's company tax number. |
status | string | Status of the vendor, one of: - unknown - active - archived |
{
"id": "0f22c735-57dd-4954-9084-68e41c17b573",
"vendor_name": "Rudy's Climbing Supplies",
"contact_name": "Rudy Choi",
"email": "[email protected]",
"website": "rudysupplies.com",
"currency": "USD",
"phone": "111-222-3333",
"addresses": [
{
"type": "Billing"
"address1": "123 Del Mar Road",
"address2": "",
"city": "San Diego",
"region": "California",
"country": "USA",
"postal_code": "92014",
}
],
"registration_number": "8409334368",
"tax_number": "6825012202",
"status": "Active"
}