TAG LINE
TAG LINE
SMALL TITLE

Bill Run / Schedule

(API Version v6)


The Bill Run Schedule holds information for any one-off or recurring scheduled Bill Runs.


What can you do with BillRunSchedule?


Properties

Property Details
identity
READ-ONLY
"identity": 2
Type: Number
This is the unique numeric identifier for the BillRunSchedule
created
READ-ONLY
"created": "2021-04-26T15:25:27.587Z"
Type: Date
This is a system generated date when the record was created. Date and time values are specified in the ISO 8601 format.
start
READ-ONLY
"start": "2021-04-26T15:25:27.587Z"
Type: Date
The time stamp when this Bill Run Schedule started.

Date and time values are specified in the ISO 8601 format.
complete
READ-ONLY
"complete": "2021-04-26T15:25:27.587Z"
Type: Date
The time stamp when this Bill Run Schedule completed.

Date and time values are specified in the ISO 8601 format.
billRunId
"billRunId": 19
Type: Number
Unique identifier for the associated BillRun object.
billRunName
"billRunName": "Sample Name"
Type: String
The name of the object associated with the billRunId property.
billRunScheduleStatusTypeId
"billRunScheduleStatusTypeId": 26
Type: Number
Unique identifier for the associated BillRunScheduleStatusType object.
billRunScheduleStatusTypeName
"billRunScheduleStatusTypeName": "Sample Name"
Type: String
The name of the object associated with the billRunScheduleStatusTypeId property.
accountId
"accountId": 9
Type: Number
This property would be used in a one-off Bill Run for a specific Account.

Unique identifier for the associated Account object.
accountName
"accountName": "Sample Name"
Type: String
The name of the object associated with the accountId property.
periodStart
"periodStart": "2021-04-26T15:25:27.587Z"
Type: Date
Start date for the billing period.

Date and time values are specified in the ISO 8601 format.
periodEnd
"periodEnd": "2021-04-26T15:25:27.587Z"
Type: Date
End date for the billing period.

Date and time values are specified in the ISO 8601 format.
createdByUserId
"createdByUserId": 15
Type: Number
Unique identifier for the associated User object.
createdByUserName
"createdByUserName": "Sample Name"
Type: String
The name of the object associated with the createdByUserId property.
orderId
"orderId": 16
Type: Number
This property would be used in a one-off Bill Run for a specific Order.

Unique identifier for the associated Order object.
orderName
"orderName": "Sample Name"
Type: String
The name of the object associated with the orderId property.
parentBillRunId
"parentBillRunId": 16
Type: Number
Unique identifier for the associated BillRun object.
parentBillRunName
"parentBillRunName": "Sample Name"
Type: String
The name of the object associated with the parentBillRunId property.
scheduleId
"scheduleId": 26
Type: Number
billRunSettings
"billRunSettings": "Hello World"
Type: String


End Points

GETBillRun/Schedule/
Retrieve all of the BillRunSchedule objects.
Retrieve all of the BillRunSchedule objects.
GET BillRun/Schedule/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "created": "2021-04-26T15:25:27.587Z",
            "start": "2021-04-26T15:25:27.587Z",
            "complete": "2021-04-26T15:25:27.587Z",
            "billRunId": 25,
            "billRunName": "Sample Text Data",
            "billRunScheduleStatusTypeId": 8,
            "billRunScheduleStatusTypeName": "Sample Text Data",
            "accountId": 25,
            "accountName": "Sample Text Data",
            "periodStart": "2021-04-26T15:25:27.587Z",
            "periodEnd": "2021-04-26T15:25:27.587Z",
            "createdByUserId": 25,
            "createdByUserName": "Sample Text Data",
            "orderId": 10,
            "orderName": "Sample Text Data",
            "parentBillRunId": 11,
            "parentBillRunName": "Sample Text Data",
            "scheduleId": 17,
            "billRunSettings": "Sample Text Data"
        }
    ]
}
GETBillRun/Schedule/Paged
Retrieve all of the BillRunSchedule objects in a paged fashion. NOTE: This end point is no longer supported in v4 of the API.
Retrieve all of the BillRunSchedule objects in a paged fashion.
GET BillRun/Schedule/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,
                "created": "2021-04-26T15:25:27.587Z",
                "start": "2021-04-26T15:25:27.587Z",
                "complete": "2021-04-26T15:25:27.587Z",
                "billRunId": 26,
                "billRunName": "Sample Text Data",
                "billRunScheduleStatusTypeId": 10,
                "billRunScheduleStatusTypeName": "Sample Text Data",
                "accountId": 23,
                "accountName": "Sample Text Data",
                "periodStart": "2021-04-26T15:25:27.587Z",
                "periodEnd": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 5,
                "createdByUserName": "Sample Text Data",
                "orderId": 9,
                "orderName": "Sample Text Data",
                "parentBillRunId": 6,
                "parentBillRunName": "Sample Text Data",
                "scheduleId": 8,
                "billRunSettings": "Sample Text Data"
            }
        ]
    }
}
GETBillRun/Schedule/{id}
Retrieve an instance of the BillRunSchedule object by its ID. NOTE: This end point is no longer supported in v4 of the API.
{id}Unique identifier for the BillRunSchedule object.
Retrieve an instance of the BillRunSchedule object by its ID.
GET BillRun/Schedule/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "created": "2021-04-26T15:25:27.587Z",
        "start": "2021-04-26T15:25:27.587Z",
        "complete": "2021-04-26T15:25:27.587Z",
        "billRunId": 17,
        "billRunName": "Sample Text Data",
        "billRunScheduleStatusTypeId": 19,
        "billRunScheduleStatusTypeName": "Sample Text Data",
        "accountId": 12,
        "accountName": "Sample Text Data",
        "periodStart": "2021-04-26T15:25:27.587Z",
        "periodEnd": "2021-04-26T15:25:27.587Z",
        "createdByUserId": 22,
        "createdByUserName": "Sample Text Data",
        "orderId": 25,
        "orderName": "Sample Text Data",
        "parentBillRunId": 13,
        "parentBillRunName": "Sample Text Data",
        "scheduleId": 0,
        "billRunSettings": "Sample Text Data"
    }
}
POSTBillRun/Schedule/OneTime
Create a new One Time BillRunSchedule object.
Create a new One Time BillRunSchedule object.
POST BillRun/Schedule/OneTime

{
    "billRunId": 19,
    "billRunScheduleStatusTypeId": 5,
    "accountId": 1,
    "periodStart": "2021-04-26T15:25:27.587Z",
    "periodEnd": "2021-04-26T15:25:27.587Z",
    "createdByUserId": 25,
    "orderId": 13,
    "parentBillRunId": 25,
    "scheduleId": 26,
    "billRunSettings": "Sample Text Data"
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "created": "2021-04-26T15:25:27.587Z",
                "start": "2021-04-26T15:25:27.587Z",
                "complete": "2021-04-26T15:25:27.587Z",
                "billRunId": 19,
                "billRunName": "Sample Text Data",
                "billRunScheduleStatusTypeId": 7,
                "billRunScheduleStatusTypeName": "Sample Text Data",
                "accountId": 9,
                "accountName": "Sample Text Data",
                "periodStart": "2021-04-26T15:25:27.587Z",
                "periodEnd": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 18,
                "createdByUserName": "Sample Text Data",
                "orderId": 13,
                "orderName": "Sample Text Data",
                "parentBillRunId": 2,
                "parentBillRunName": "Sample Text Data",
                "scheduleId": 1,
                "billRunSettings": "Sample Text Data"
            }
        ]
    }
}
POSTBillRun/Schedule/Recurring
Create a new Recurring BillRunSchedule object.
Create a new Recurring BillRunSchedule object.
POST BillRun/Schedule/Recurring

{
    "billRunId": 3,
    "billRunScheduleStatusTypeId": 14,
    "accountId": 26,
    "periodStart": "2021-04-26T15:25:27.587Z",
    "periodEnd": "2021-04-26T15:25:27.587Z",
    "createdByUserId": 16,
    "orderId": 10,
    "parentBillRunId": 0,
    "scheduleId": 21,
    "billRunSettings": "Sample Text Data"
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "created": "2021-04-26T15:25:27.587Z",
                "start": "2021-04-26T15:25:27.587Z",
                "complete": "2021-04-26T15:25:27.587Z",
                "billRunId": 23,
                "billRunName": "Sample Text Data",
                "billRunScheduleStatusTypeId": 16,
                "billRunScheduleStatusTypeName": "Sample Text Data",
                "accountId": 23,
                "accountName": "Sample Text Data",
                "periodStart": "2021-04-26T15:25:27.587Z",
                "periodEnd": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 22,
                "createdByUserName": "Sample Text Data",
                "orderId": 18,
                "orderName": "Sample Text Data",
                "parentBillRunId": 18,
                "parentBillRunName": "Sample Text Data",
                "scheduleId": 13,
                "billRunSettings": "Sample Text Data"
            }
        ]
    }
}
POSTBillRun/Schedule/{id}/Cancel
Cancel an existing BillRunSchedule based on the {id} provided.
{id}Unique identifier for the BillRunSchedule object.