Mass Edit Target Object
Version: 3.3
A Mass Edit Target object contains the details for a Mass Edit Target. The following properties are present:
Name | Type | Description |
---|---|---|
self | Link | A link to the resource for this Mass Edit Target |
job | Link | A link to the Mass Edit Job resource that contains this Mass Edit Target. |
entity | Link | The entity that is the target of this Mass Edit Job. |
state_description | Labels | A description of the current state of the Mass Edit Job. |
state | String | The state of the Mass Edit Job. Possible values: Pending , InProgress , Completed . |
condition | String | The condition of the Mass Edit Job. Possible values: Pending , Success , Failure . |
started_on | String | String containing an ISO 8601 formatted date and time when this Mass Edit Job was started. |
completed_on | String | String containing an ISO 8601 formatted date and time when this Mass Edit Job was completed. |
Example
RequestResponse
{
"entity":{
"href":"http://hostname/api/entities/140"
},
"state_description":"Pending",
"state":"Pending",
"condition":"Pending",
"started_on":null,
"completed_on":null,
"self":{
"href":"http://hostname/api/massedits/500/targets/1932",
"title":"This mass edit target."
},
"job":{
"href":"http://hostname/api/massedits/500",
"title":"The Mass Edit Job that contains this target."
}
}