Mass edit target collection
The Collection of Mass Edit Targets Resource contains all of the Mass Edit Targets for a specific Mass Edit Job. Methods supported: GET, HEAD
GET /api/massedits/{jobid}/targets{?skip,take}
Returns a Mass Edit Target Collection Object that contains the collection of all Mass Edit Targets for this particular Mass Edit Job. If there are more targets than that can fit in a single page, a link is included to retrieve the next page.
Chunking
If there are more targets than can fit in a single chunk, a link is included to retrieve the next chunk.
Ranging
If the take parameter is specified, the number of targets returned is limited to that parameter (up to 100). The skip parameter can also be included to further determine which range of targets is returned.
Example Request:
GET http://<hostname>/api/massedits?state=Pending
Host: hostname
Accept: application/json
Example Response:
HTTP/1.1 200 OK
Content-Length: content lengtha
Content-Type: application/json; charset=utf-8
ETag: "hash string"
{
"items": [
... Mass Edit Job Objects
],
"next",{
"href":"http://<hostname>/api/massedits?skip=25"
},
"returned_items":25,
"self":{
"href":"http://<hostname>/api/massedits"
},
"total_items":78
}