Invite a New Vendor
POST
/vendors
Invites a new vendor to your company and notifies them via email. The vendor will appear in the 'Invited Vendors' tab until they accept the invitation.
Authorizations
bearer
TypeHTTP (bearer)
Request Body
JSON
{
"inviteMessage": "string",
"id": 0,
"vendorId": "string",
"vendor": {
},
"companyId": 0,
"company": {
},
"status": "string",
"complianceStatus": "string",
"lastComplianceRefresh": "string",
"dateInvited": "string",
"dateAccepted": "string",
"dateRejected": "string",
"checklistTasks": [
{
}
],
"lastComplianceUpdate": "string"
}
Responses
Vendor created and invitation sent
application/json
JSON
{
"vendorURL": "string",
"metadata": {
},
"id": 0,
"complianceStatus": "string",
"vendorStatus": "string",
"lastComplianceUpdate": "string",
"lastComplianceRefresh": "string",
"checklist": [
{
"documentURL": "string",
"errorMessages": [
"string"
],
"type": "string",
"compliant": true,
"status": "string",
"documentId": 0
}
]
}