Vendors
Create a vendor
Creates a new vendor in the authenticated user's organization. Validates required fields, checks demo restrictions, associates projects via the vendors_projects join table, records creation in change history, fires automation triggers (vendor_added), and sends in-app assignment notifications to assignee and reviewer.
post/vendors
Request body
Response
Vendor created successfully
Example response
{
"message": "Created",
"data": {
"id": 42,
"vendor_name": "Acme Corp",
"vendor_provides": "Cloud hosting services",
"assignee": 5,
"website": "https://acme.example.com",
"vendor_contact_person": "Jane Doe"
}
}