[SalesForce] Rest Request to insert/update record in external system

I have to integrate SFDC with an external system where I have to insert/update a custom object record.
External system team is asking to send a REST request to update/insert the record.

I don't know how make REST request for whole record. It has more than 100 fields. Do i have put all of fields value in URL ???

Best Answer

You would typically send a POST request, rather than a GET, to insert/update a record, so you could pass your 100+ fields as JSON or XML in the POST body. Check what the external system team is expecting to see!