Get batch taxonomy permission operations result.

get

/content/management/api/v1.1/taxonomies/{id}/permissions/.batch/{jobId}/results


The response contains fields - count, hasMore, and items.
count represents number of items in the response. hasMore is false if all items are returned in the response. items represents a list of items that were processed, contains fields - operation, item, and result.

Request

Path Parameters
Query Parameters
  • This parameter is used to control the returned fields for items. This parameter accepts a comma-separated list of field names. These fields will be returned for each object in the list. As all the field names are case-sensitive, users must provide the correct field names in the query.
    This parameter is optional in the query. The allowed values are operation(index,name), item(permissionId), result(status,headers,body.o:errorCode,body.o:errorPath,body.instance). By default results shows fields (operation(index), result(status)) in the response. Any incorrect or invalid field name given in the query will result in an error.

    Example: ?fields=operation(index,name),item
    This returns fields operation.index, operation.name, and item.permissionId.
    Example: ?fields=item(permissionId),result(status,body.o:errorCode)
    This returns fields item.permissionId, result.status, and result.body.o:errorCode.
Back to Top

Response

Supported Media Types

200 Response

OK.

400 Response

Bad request.

403 Response

Forbidden.

404 Response

Not found.

500 Response

Internal server error.
Back to Top