Create Suppliers from CSV
Overview
You can create new payees from a CSV file.
Resource Access
POST https://<hostname>/payee/v1/payees
Parameters
The requested criteria has to be the following fields:
Keys | Values |
---|---|
fileName | File in CSV format |
Example Request
POST https://<hostname>/payee/v1/payees
Key - SampleSuppliers
Value - File.csv
Example Response
{
"fileInfo": {
"fileId": "f70d7e8c-6fb0-5811-a381-31665366681f",
"fileName": "SampleSuppliers"
},
"newSupplierData": [
{
"id": "aa180423-c7d0-5ab7-ae23-b5e23ebf4cef",
"sid": "abcdsupplier"
}
],
"updatedSupplierData": []
}
Updated 3 days ago