TAG LINE
TAG LINE
SMALL TITLE

Bill Run / Step Type

(API Version v5)


The Bill Run Step Types are internal statuses for a Bill Run showing their current step in the billing pipeline. Such as "Scheduled", "In-Progress" etc.


What can you do with BillRunStepType?


Properties

Property Details
identity
READ-ONLY
"identity": 14
Type: Number
This is the unique numeric identifier for the BillRunStepType
name
READ-ONLY
"name": "Scheduled"
Type: String
The defined name for this Step Type.
sortOrder
READ-ONLY
"sortOrder": 3
Type: Number
Unused.


End Points

GETBillRun/StepType/
Retrieve all of the BillRunStepType objects.
Retrieve all of the BillRunStepType objects.
GET BillRun/StepType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Scheduled",
            "sortOrder": 15
        }
    ]
}
GETBillRun/StepType/Paged
Retrieve all of the BillRunStepType 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 BillRunStepType objects in a paged fashion.
GET BillRun/StepType/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,
                "name": "Scheduled",
                "sortOrder": 18
            }
        ]
    }
}
GETBillRun/StepType/{id}
Retrieve an instance of the BillRunStepType object by its ID.
{id}Unique identifier for the BillRunStepType object.
Retrieve an instance of the BillRunStepType object by its ID.
GET BillRun/StepType/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Scheduled",
        "sortOrder": 0
    }
}