Partially Update Model

A partial update is the most complex of the calls supported by an Automated API generated service. It is achieved via a PATCH document. The PATCH document isn’t custom to any particular API, but is a general form which is supported by Automated API generated service. You can find formal documentation for PATCH here.

For partial updates, this will only utilize the Replace op as defined in the PATCH documentation.

A typical PATCH document for a typical model could be demonstrated as:

[
{      
	"op": "replace",
	"path": "Name",
	"value": "butkis test"    
}
]

It will be submitted in the body of a PATCH request sent to the Model By Id endpoint supported by your API.

https://gateway.automatedapi.com/{username}/{model name}s/{guid id}