Introduction:
This blog has the REST API details that can be used to update the customer’s name in Oracle Cloud application.
Cause of the issue:
Business wants to mass update customer names for multiple customers in Oracle Cloud Application.
How do we solve:
We have created payload for REST API with the new customer’s name and payload will read the data from csv file and update the same.
REST API:
https://fa-xxxx-saasfaprod1.fa.xxx.oraclecloud.com/crmRestApi/resources/11.13.18.05/hubOrganizations/ 1233800129
Method: POST
Sample Request:
{
“OrganizationName”: ” Vission Customer Name 1″
}
Sample Response:
The response will have the status code.
- Success code – “200 OK”
- Error code – anything other than 200 OK
Sample data file:
CUSTOMER_NUMBER | CUSTOMER_NAME |
1233800129 | Vision Customer Name 1 |
1233800130 | Vision Customer Name 2 |
1233800131 | Vision Customer Name 3 |
1233800132 | Vision Customer Name 4 |
1233800133 | Vision Customer Name 5 |
1233800134 | Vision Customer Name 6 |
1233800135 | Vision Customer Name 7 |
Recommended Posts