Update a Single Object
Partial Update on an Object
This function updates a single object of the given type and with the given ID. If no object with the specified object exists yet, an error is returned.
/api/v4/
backend-deployment-id
/objects/
model
/
object-id
.json
PATCH
Parameters
The parameters must be specified in the same way as for creating new objects. Please refer to the same section in Creating a New Object and to the Field Representation section.
Response
The response includes the single updated object. The format of the object is the same as for Retrieving all Objects.
Example
In this example, we update only the status field of a task object:
PATCH BASE-URL/api/v4/533bda53027894f69b001055/objects/tasks/198c990e-f1bf-11e1-8d7d-001cc01904e3.json
task[status]=1
Response:
{
"id": "198c990e-f1bf-11e1-8d7d-001cc01904e3",
"type": "task",
"updated_at": "2015-02-10T12:03:28Z",
"display": "Task 1",
"name": "Task 1",
"instructions": null,
"status": {
"key": 1,
"display": "Closed"
},
"category_id": null
}
Replacing an Object in its Entirety
This function replaces a single object of the given type with the given ID. If no object with the specified ID exists yet, a new object is created with the given ID.
/api/v4/
backend-deployment-id
/objects/
model
/
object-id
.json
PUT
Parameters
The parameters must be specified in the same way as for creating new objects. Please refer to the same section in Creating a New Object and to the Field Representation section.
Response
The response includes the single updated object. The format of the object is the same as for Retrieving all Objects.
Example
In this example, we set only the name
field of a task
object. The other fields are cleared.
PUT BASE-URL/api/v4/533bda53027894f69b001055/objects/tasks/198c990e-f1bf-11e1-8d7d-001cc01904e3.json
task[name]=Task%201
Response:
{
"id": "198c990e-f1bf-11e1-8d7d-001cc01904e3",
"type": "task",
"updated_at": "2015-02-10T12:01:25Z",
"display": "Task 1",
"name": "Task 1",
"instructions": null,
"status": null,
"category_id": null
}
Last updated