| Connect Web Services / Customer Web Service | |
POST customer is used to create a new customer record.
Usage: POST /data/customer
POST Data The body of the POST call should be the new JSON customer record. The id field should not be populated. The updated JSON customer record will be returned in the POST response.
Usage: PUT /data/customer/id/{customer id}
Example: PUT /data/customer/id/24476
The body of the PUT call should be the JSON customer record. The updated JSON customer record will be returned in the PUT response. The PUT web service will return a 404 status code if the customer id refers to a non-existent record.