Common write operations use POST, PATCH, and DELETE.
POST /api/data/v9.2/accounts Content-Type: application/json
{ "name": "Contoso Health", "telephone1": "03 9000 0000" }
PATCH /api/data/v9.2/accounts(GUID) Content-Type: application/json
{ "telephone1": "03 9555 1234" }
DELETE /api/data/v9.2/accounts(GUID)
- validate ownership and permissions
- capture created record IDs safely
- use
PATCHonly for changed fields - be careful when deleting records in shared environments
For practical write-operation examples in code, see: