This method lets you update one person, delete one person or create one new person.

If you need to make multiple updates you should rather use this method: persons/io/updates (POST)

URL

(POST) /api/persons/io/update
CODE

PARAMETERS

The body must contain a JSON object.

This is a request to delete a person, create a person or change the properties of a person.

See Person update request (Object) for payload details.

A typical payload may look as follows (the example is for deleting a person):

{
    "action": "Delete",
    "pid": 677,
    "cid": 537,
    "data": "just a test"
}
CODE

RESULTS

The API method returns detailed status and error information.

See Person update result (Object)