Vendors
Update a vendor
Partially updates an existing vendor. Only provided fields are updated. Review and scorecard fields can be explicitly set to null to clear them. Required fields (vendor_name, vendor_provides, website, vendor_contact_person) are only updated if they have a non-empty value. Records field-level changes in change history, fires automation triggers (vendor_updated), and sends in-app notifications when assignee or reviewer changes.
patch/vendors/{id}
Path parameters
idinteger required
Vendor ID
Request body
Response
Vendor updated successfully
Example response
{
"message": "Accepted",
"data": {
"id": 42,
"vendor_name": "Acme Corp",
"vendor_provides": "Cloud hosting services",
"assignee": 5,
"website": "https://acme.example.com",
"vendor_contact_person": "Jane Doe"
}
}