input CreateVendorInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers. |
name | String! | Human-readable name for this vendor. |
email | String! | Email address for the contact. |
account_number | String | Account number for this vendor. |
address | AddressInput | Address details for this vendor. |
currency | String | ISO 4217 currency code for the monetary values on this vendor. |
internal_note | String | Internal note for this vendor. |
default_po_note | String | Default po note for this vendor. |
logo | String | Logo for this vendor. |
partner_vendor_id | Int | Public API partner vendor ID that identifies the related record. |
Referenced By
- vendor_create Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"name": "Acme Supplies",
"email": "customer@example.com",
"account_number": "2",
"address": {address1: "123 Fulfillment Ave", city: "New York", country: "US"},
"currency": "19.99",
"internal_note": "Customer requested expedited handling.",
"default_po_note": "Customer requested expedited handling.",
"logo": "https://example.com/images/blue-tee.jpg",
"partner_vendor_id": 1234
}