TAG LINE
TAG LINE
SMALL TITLE

Usage Rated Exception Type

(API Version v9)


What can you do with UsageRatedExceptionType?


Properties

Property Details
identity
READ-ONLY
"identity": 24
Type: Number
This is the unique numeric identifier for the UsageRatedExceptionType
sortOrder
"sortOrder": 26
Type: Number
description
"description": "Hello World"
Type: String
name
"name": "Hello World"
Type: String


End Points

GETUsageRatedExceptionType/
Retrieve all of the UsageRatedExceptionType objects.
Retrieve all of the UsageRatedExceptionType objects.
GET UsageRatedExceptionType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "sortOrder": 20,
            "description": "Sample Text Data",
            "name": "Sample Text Data"
        }
    ]
}
GETUsageRatedExceptionType/Paged
Retrieve all of the UsageRatedExceptionType 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 UsageRatedExceptionType objects in a paged fashion.
GET UsageRatedExceptionType/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,
                "sortOrder": 7,
                "description": "Sample Text Data",
                "name": "Sample Text Data"
            }
        ]
    }
}
GETUsageRatedExceptionType/{id}
Retrieve an instance of the UsageRatedExceptionType object by its ID.
{id}Unique identifier for the UsageRatedExceptionType object.
Retrieve an instance of the UsageRatedExceptionType object by its ID.
GET UsageRatedExceptionType/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "sortOrder": 17,
        "description": "Sample Text Data",
        "name": "Sample Text Data"
    }
}