TAG LINE
TAG LINE
SMALL TITLE

Usage / Class / Dynamic

(API Version v7)


Defines a container of information on how to dynamically derive the Usage Class during mediation. It will have a set of associated rules.


What can you do with UsageClassDynamic?


Properties

Property Details
identity
READ-ONLY
"identity": 2
Type: Number
This is the unique numeric identifier for the UsageClassDynamic
ownerId
READ-ONLY
"ownerId": 15
Type: Number
Unique identifier for the associated Owner object.
ownerName
READ-ONLY
"ownerName": "Sample Name"
Type: String
The name of the object associated with the ownerId property.
name
"name": "Roaming Voice"
Type: String
The user defined name for this Dynamic Usage Class.
description
"description": "Derrive if this record is in Roaming Voice."
Type: String
User defined description for the Dynamic Usage Class
isActive
"isActive": true
Type: Boolean
Whether or not this Dynamic Usage Class is actively being used.


Patch Types

The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.

PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the UsageClassDynamic object.

Standard PATCH objects:

DataFlow PATCH objects:


End Points

DELETEUsage/Class/Dynamic/{id}
Delete an instance of the UsageClassDynamic object. Upon successful delete, this API will return a record of all of the related objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system.
{id}Unique identifier for the UsageClassDynamic object.
Delete an instance of the UsageClassDynamic object.
DELETE Usage/Class/Dynamic/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "delete",
    "results": {
        "totalCount": 4,
        "items": [
            {
                "identity": 1,
                "action": "deleted",
                "dtoTypeKey": "usageClassDynamic"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETUsage/Class/Dynamic/
Retrieve all of the UsageClassDynamic objects.
Retrieve all of the UsageClassDynamic objects.
GET Usage/Class/Dynamic/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 7,
            "ownerName": "Sample Text Data",
            "name": "Roaming Voice",
            "description": "Derrive if this record is in Roaming Voice.",
            "isActive": true
        }
    ]
}
GETUsage/Class/Dynamic/Paged
Retrieve all of the UsageClassDynamic 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 UsageClassDynamic objects in a paged fashion.
GET Usage/Class/Dynamic/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,
                "ownerId": 4,
                "ownerName": "Sample Text Data",
                "name": "Roaming Voice",
                "description": "Derrive if this record is in Roaming Voice.",
                "isActive": true
            }
        ]
    }
}
GETUsage/Class/Dynamic/Paged/Detail
Retrieve all of the UsageClassDynamic objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
Retrieve all of the UsageClassDynamic objects in a paged fashion with all object details.
GET Usage/Class/Dynamic/Paged/Detail
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,
                "ownerId": 27,
                "ownerName": "Sample Text Data",
                "name": "Roaming Voice",
                "description": "Derrive if this record is in Roaming Voice.",
                "isActive": true,
                "details": {
                    "usageClassDynamicRules": [
                        {
                            "identity": 1,
                            "usageClassDynamicId": 1,
                            "usageClassDynamicName": "Sample Text Data",
                            "extensionAttributeListItemId": 25,
                            "geoTreeLocationGroupId": 34,
                            "geoTreeLocationGroupName": "Sample Text Data",
                            "usageClassId": 83,
                            "usageClassName": "Sample Text Data",
                            "sortOrder": 90
                        }
                    ]
                }
            }
        ]
    }
}
GETUsage/Class/Dynamic/{id}
Retrieve an instance of the UsageClassDynamic object by its ID.
{id}Unique identifier for the UsageClassDynamic object.
Retrieve an instance of the UsageClassDynamic object by its ID.
GET Usage/Class/Dynamic/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 10,
        "ownerName": "Sample Text Data",
        "name": "Roaming Voice",
        "description": "Derrive if this record is in Roaming Voice.",
        "isActive": true
    }
}
GETUsage/Class/Dynamic/{id}/Detail
Retrieve deep detail of the UsageClassDynamic object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
{id}Unique identifier for the UsageClassDynamic object.
Retrieve deep detail of the UsageClassDynamic object by its ID.
GET Usage/Class/Dynamic/{id}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 24,
        "ownerName": "Sample Text Data",
        "name": "Roaming Voice",
        "description": "Derrive if this record is in Roaming Voice.",
        "isActive": true,
        "details": {
            "usageClassDynamicRules": [
                {
                    "identity": 1,
                    "usageClassDynamicId": 1,
                    "usageClassDynamicName": "Sample Text Data",
                    "extensionAttributeListItemId": 25,
                    "geoTreeLocationGroupId": 34,
                    "geoTreeLocationGroupName": "Sample Text Data",
                    "usageClassId": 83,
                    "usageClassName": "Sample Text Data",
                    "sortOrder": 90
                }
            ]
        }
    }
}
PATCHUsage/Class/Dynamic/{id}
Update or Add the UsageClassDynamic object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array.
{id}Unique identifier for the UsageClassDynamic object.
Update or Add the UsageClassDynamic object and optionally make changes to any child objects.
PATCH Usage/Class/Dynamic/{id}

{
    "details": {},
    "usageClassDynamics": {
        "items": [
            {
                "patchType": "create",
                "patchClientId": 1,
                "name": "Roaming Voice",
                "description": "Derrive if this record is in Roaming Voice.",
                "isActive": true
            }
        ]
    }
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "patch",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "action": "created",
                "dtoTypeKey": "usageClassDynamic",
                "instance": {
                    "identity": 1,
                    "ownerId": 26,
                    "ownerName": "Sample Text Data",
                    "name": "Roaming Voice",
                    "description": "Derrive if this record is in Roaming Voice.",
                    "isActive": true
                }
            }
        ]
    }
}
POSTUsage/Class/Dynamic/
Create a new instance of the UsageClassDynamic object.
Create a new instance of the UsageClassDynamic object.
POST Usage/Class/Dynamic/

{
    "name": "Roaming Voice",
    "description": "Derrive if this record is in Roaming Voice.",
    "isActive": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 0,
                "ownerName": "Sample Text Data",
                "name": "Roaming Voice",
                "description": "Derrive if this record is in Roaming Voice.",
                "isActive": true
            }
        ]
    }
}
PUTUsage/Class/Dynamic/{id}
Update an existing instance of the UsageClassDynamic object.
Update an existing instance of the UsageClassDynamic object.
PUT Usage/Class/Dynamic/{id}

{
    "identity": 1,
    "name": "Roaming Voice",
    "description": "Derrive if this record is in Roaming Voice.",
    "isActive": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 4,
                "ownerName": "Sample Text Data",
                "name": "Roaming Voice",
                "description": "Derrive if this record is in Roaming Voice.",
                "isActive": true
            }
        ]
    }
}