Read an ObjectGroupCollectionItem
Retrieves an ObjectGroupCollectionItem with the specified ID from the database
An ObjectGroupCollectionItem is identified by the combination of its own ID and the ID of the ObjectGroup element to which it refers. Therefore, you need to specify both IDs as request parameters of this method.
Request
URI: /ObjectGroupCollectionItems(objectGroupCollectionID='<ogcID>',objectGroupID='<ogID>')
HTTP Method: GET
Permissions: <auth>.r
Request Parameters
| Parameter | Required | Data Type | Description | Parameter Type |
|---|---|---|---|---|
| objectGroupCollectionID | Yes | string | ID of the ObjectGroupCollection header element to which the item is assigned | Path |
| objectGroupID | Yes | string | ID of the ObjectGroup element to which the item refers | Path |
Request Example
/ObjectGroupCollectionItems(objectGroupCollectionID='8c0b596b1bd340d3ac7b0072ffb5c8bd',objectGroupID='be531d4cfd524f06b8df7c999377fac8')
Response
Response Status and Error Codes
| Code | Description |
|---|---|
| 200 | Item retrieved successfully |
Payload
Only media type JSON is supported. The JSON for this method has the following structure:
{
"objectGroupCollectionID" : { "type": "string", "maxLength": 32 },
"objectGroupCollectionName" : { "type": "string", "maxLength": 255, "required": "true" },
"objectGroupID" : { "type": "string", "maxLength": 32, "required": "true" },
"isSubtreeSelected" : { "type": "boolean" },
"etag" : { "type": "string" }
}