TAG LINE
TAG LINE
SMALL TITLE
Defines a rule used with a Dynamic Usage Class.
identity READ-ONLY | "identity": 9 Type: Number This is the unique numeric identifier for the UsageClassDynamicRule |
usageClassDynamicId | "usageClassDynamicId": 10 Type: Number Unique identifier for the associated UsageClassDynamic object. |
usageClassDynamicName | "usageClassDynamicName": "Sample Name" Type: String The name of the object associated with the usageClassDynamicId property. |
extensionAttributeListItemId | "extensionAttributeListItemId": 9 Type: Number A specified user defined Mediation field in the usage feed to be used as part of this rule. Unique identifier for the associated ExtensionAttributeListItem object. |
extensionAttributeListItemName | "extensionAttributeListItemName": "Sample Name" Type: String The name of the object associated with the extensionAttributeListItemId property. |
geoTreeLocationGroupId | "geoTreeLocationGroupId": 26 Type: Number Unique identifier for the associated GeoTreeLocationGroup object. |
geoTreeLocationGroupName | "geoTreeLocationGroupName": "Sample Name" Type: String The name of the object associated with the geoTreeLocationGroupId property. |
usageClassId | "usageClassId": 22 Type: Number Unique identifier for the associated UsageClass object. |
usageClassName | "usageClassName": "Sample Name" Type: String The name of the object associated with the usageClassId property. |
sortOrder READ-ONLY | "sortOrder": 27 Type: Number Unused |
| GET | Usage/Class/Dynamic/Rule/ |
| Retrieve all of the UsageClassDynamicRule objects. | |
Retrieve all of the UsageClassDynamicRule objects. GET Usage/Class/Dynamic/Rule/ HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"totalCount": 1,
"items": [
{
"identity": 1,
"usageClassDynamicId": 21,
"usageClassDynamicName": "Sample Text Data",
"extensionAttributeListItemId": 16,
"extensionAttributeListItemName": "Sample Text Data",
"geoTreeLocationGroupId": 6,
"geoTreeLocationGroupName": "Sample Text Data",
"usageClassId": 1,
"usageClassName": "Sample Text Data",
"sortOrder": 15
}
]
} | |
| GET | Usage/Class/Dynamic/Rule/Paged |
| Retrieve all of the UsageClassDynamicRule objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints. | |
Retrieve all of the UsageClassDynamicRule objects in a paged fashion. GET Usage/Class/Dynamic/Rule/Paged HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"pagination": {
"pageNumber": 1,
"pageSize": 20,
"excludeTotalCount": false
},
"pagedResults": {
"totalCount": 1,
"items": [
{
"identity": 1,
"usageClassDynamicId": 8,
"usageClassDynamicName": "Sample Text Data",
"extensionAttributeListItemId": 15,
"extensionAttributeListItemName": "Sample Text Data",
"geoTreeLocationGroupId": 7,
"geoTreeLocationGroupName": "Sample Text Data",
"usageClassId": 19,
"usageClassName": "Sample Text Data",
"sortOrder": 7
}
]
}
} | |
| GET | Usage/Class/Dynamic/Rule/{id} |
| Retrieve an instance of the UsageClassDynamicRule object by its ID. | |
| {id} | Unique identifier for the UsageClassDynamicRule object. |
Retrieve an instance of the UsageClassDynamicRule object by its ID. GET Usage/Class/Dynamic/Rule/{id}HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"instance": {
"identity": 1,
"usageClassDynamicId": 19,
"usageClassDynamicName": "Sample Text Data",
"extensionAttributeListItemId": 19,
"extensionAttributeListItemName": "Sample Text Data",
"geoTreeLocationGroupId": 5,
"geoTreeLocationGroupName": "Sample Text Data",
"usageClassId": 7,
"usageClassName": "Sample Text Data",
"sortOrder": 22
}
} | |