TAG LINE
TAG LINE
SMALL TITLE

Usage / Billing Type

(API Version v5)



What can you do with UsageBillingType?


Properties

Property Details
identity
READ-ONLY
"identity": 6
Type: Number
This is the unique numeric identifier for the UsageBillingType
ownerId
READ-ONLY
"ownerId": 16
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": "Data"
Type: String
User defined name for this Billing Type
number
"number": 26
Type: Number
usageBillingTypeTypeId
"usageBillingTypeTypeId": 12
Type: Number
Unique identifier for the associated UsageBillingTypeType object.
usageBillingTypeTypeName
"usageBillingTypeTypeName": "Sample Name"
Type: String
The name of the object associated with the usageBillingTypeTypeId property.


End Points

DELETEUsage/BillingType/{id}
Delete an instance of the UsageBillingType object. Upon successful delete, this API will return a record of all of the reelated 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 UsageBillingType object.
Delete an instance of the UsageBillingType object.
DELETE Usage/BillingType/{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": "usageBillingType"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETUsage/BillingType/
Retrieve all of the UsageBillingType objects.
Retrieve all of the UsageBillingType objects.
GET Usage/BillingType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 19,
            "ownerName": "Sample Text Data",
            "name": "Data",
            "number": 2,
            "usageBillingTypeTypeId": 13,
            "usageBillingTypeTypeName": "Sample Text Data"
        }
    ]
}
GETUsage/BillingType/Paged
Retrieve all of the UsageBillingType 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 UsageBillingType objects in a paged fashion.
GET Usage/BillingType/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": 6,
                "ownerName": "Sample Text Data",
                "name": "Data",
                "number": 20,
                "usageBillingTypeTypeId": 8,
                "usageBillingTypeTypeName": "Sample Text Data"
            }
        ]
    }
}
GETUsage/BillingType/{id}
Retrieve an instance of the UsageBillingType object by its ID.
{id}Unique identifier for the UsageBillingType object.
Retrieve an instance of the UsageBillingType object by its ID.
GET Usage/BillingType/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 1,
        "ownerName": "Sample Text Data",
        "name": "Data",
        "number": 6,
        "usageBillingTypeTypeId": 8,
        "usageBillingTypeTypeName": "Sample Text Data"
    }
}
POSTUsage/BillingType/
Create a new instance of the UsageBillingType object.
Create a new instance of the UsageBillingType object.
POST Usage/BillingType/

{
    "name": "Data",
    "number": 16,
    "usageBillingTypeTypeId": 5
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 3,
                "ownerName": "Sample Text Data",
                "name": "Data",
                "number": 6,
                "usageBillingTypeTypeId": 16,
                "usageBillingTypeTypeName": "Sample Text Data"
            }
        ]
    }
}
PUTUsage/BillingType/{id}
Update an existing instance of the UsageBillingType object.
Update an existing instance of the UsageBillingType object.
PUT Usage/BillingType/{id}

{
    "identity": 1,
    "name": "Data",
    "number": 9,
    "usageBillingTypeTypeId": 18
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 5,
                "ownerName": "Sample Text Data",
                "name": "Data",
                "number": 18,
                "usageBillingTypeTypeId": 18,
                "usageBillingTypeTypeName": "Sample Text Data"
            }
        ]
    }
}