Introduction:
This blog has the REST API details that can be used to update the Supplier Site PayGroup in Oracle Cloud application.
Cause of the issue:
Business wants to mass update Supplier Site PayGroup for multiple supplier sites in Oracle Cloud Application.
How do we solve:
We have created payload for REST API with the new Supplier Site PayGroup and payload will read the data from csv file and update the same.
REST API:
https://fa-xxxx-saasfaprod1.fa.xxx.oraclecloud.com/fscmRestApi/resources/11.13.18.05/suppliers/{{VENDOR_ID}}/child/sites/{{VENDOR_SITE_ID}}
Method: POST
Sample Request:
{
“PayGroup”: “VISION – Wires”
}
Sample Response:
The response will have the status code.
- Success code – “200 OK”
- Error code – anything other than 200 OK
Sample data file:
VENDOR_ID | VENDOR_SITE_ID |
300000161234567 | 30000021234567 |
300000161234568 | 30000021234568 |
300000161234569 | 30000021234569 |
300000161234570 | 30000021234570 |
300000161234571 | 30000021234571 |
Recommended Posts