Suppliers - API Connector - Overview
⚙️ Introduction
This job is designed to create and update Suppliers by connecting your API gateway to DJUST using the API Connector. It processes data sent in JSON format from a REST API.
📂 Accepted Payload Structure
[
{
"name":"supplier1",
"externalId":"1234",
"deleted":"false",
"description":"test",
"totalOffers":"5",
"totalOrders":"2",
"supplierRating":"5",
"returnPolicy":"yes"
},
{
"name":"supplier2",
"externalId":"2345",
"deleted":"false",
"description":"test",
"totalOffers":"5",
"totalOrders":"2",
"supplierRating":"5",
"returnPolicy":"yes"
}
]
The JSON must always be a list of objects
📋 Fields
Field | Definition | Required on creation | Required on update | Editable | Default value |
---|---|---|---|---|---|
| Supplier Name | ✅ | ✅ | ||
| Supplier Unique external identifier | ✅ | ✅ | ||
| Description | ✅ | |||
| Supplier logo | ✅ | |||
| Total number of linked Offers | ||||
| Total number of linked Orders | ||||
| Supplier rating | ✅ | |||
| |||||
| Deletes the Supplier | ✅ | False | ||
| Return Policy | ✅ | |||
| Banner | ✅ | |||
| Account Unique external identifier to be linked with the supplier | ✅ | |||
| Supplier Status | ✅ |
Updated 18 days ago