Vendors
SearchVendors
Searches for vendors using a filter against supported Vendor properties and a supported sorter.
post/v2/vendors/search
Request body
Example request
{
"query": {
"filter": {
"name": [
"Joe's Fresh Seafood",
"Hannah's Bakery"
],
"status": [
"ACTIVE"
]
},
"sort": {
"field": "CREATED_AT",
"order": "ASC"
}
}
}Response
Success
Example response
{
"vendors": [
{
"account_number": "4025391",
"address": {
"address_line_1": "505 Electric Ave",
"address_line_2": "Suite 600",
"administrative_district_level_1": "NY",
"country": "US",
"locality": "New York",
"postal_code": "10003"
},
"contacts": [
{
"email_address": "joe@joesfreshseafood.com",
"id": "INV_VC_FMCYHBWT1TPL8MFH52PBMEN92A",
"name": "Joe Burrow",
"phone_number": "1-212-555-4250"
}
],
"created_at": "2022-03-16T10:21:54.859Z",
"id": "INV_V_JDKYHBWT1D4F8MFH63DBMEN8Y4",
"name": "Joe's Fresh Seafood",
"note": "a vendor",
"status": "ACTIVE",
"updated_at": "2022-03-16T10:21:54.859Z",
"version": 1
}
]
}