TAG LINE
TAG LINE
SMALL TITLE

Usage / Class / Dynamic / Rule

(API Version v5)


Defines a rule used with a Dynamic Usage Class.


What can you do with UsageClassDynamicRule?


Properties

Property Details
identity
READ-ONLY
"identity": 8
Type: Number
This is the unique numeric identifier for the UsageClassDynamicRule
usageClassDynamicId
"usageClassDynamicId": 14
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": 23
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": 22
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": 16
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": 16
Type: Number
Unused


End Points

GETUsage/Class/Dynamic/Rule/
Retrieve all of the UsageClassDynamicRule objects.
Retrieve all of the UsageClassDynamicRule objects.
GET Usage/Class/Dynamic/Rule/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "usageClassDynamicId": 16,
            "usageClassDynamicName": "Sample Text Data",
            "extensionAttributeListItemId": 14,
            "extensionAttributeListItemName": "Sample Text Data",
            "geoTreeLocationGroupId": 21,
            "geoTreeLocationGroupName": "Sample Text Data",
            "usageClassId": 3,
            "usageClassName": "Sample Text Data",
            "sortOrder": 15
        }
    ]
}
GETUsage/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
View Sample Response
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": 26,
                "usageClassDynamicName": "Sample Text Data",
                "extensionAttributeListItemId": 7,
                "extensionAttributeListItemName": "Sample Text Data",
                "geoTreeLocationGroupId": 4,
                "geoTreeLocationGroupName": "Sample Text Data",
                "usageClassId": 7,
                "usageClassName": "Sample Text Data",
                "sortOrder": 18
            }
        ]
    }
}
GETUsage/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}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "usageClassDynamicId": 24,
        "usageClassDynamicName": "Sample Text Data",
        "extensionAttributeListItemId": 19,
        "extensionAttributeListItemName": "Sample Text Data",
        "geoTreeLocationGroupId": 27,
        "geoTreeLocationGroupName": "Sample Text Data",
        "usageClassId": 6,
        "usageClassName": "Sample Text Data",
        "sortOrder": 22
    }
}