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": 16
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": 6
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": 22
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": 5
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": 27
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": 19
Type: Number
billRunSettings
"billRunSettings": "Hello World"
Type: String


End Points

GETBillRun/Schedule/
Retrieve all of the BillRunSchedule objects. NOTE: This end point is no longer supported in v4 of the API.
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": 9,
            "billRunName": "Sample Text Data",
            "billRunScheduleStatusTypeId": 12,
            "billRunScheduleStatusTypeName": "Sample Text Data",
            "accountId": 13,
            "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": 15,
            "orderName": "Sample Text Data",
            "parentBillRunId": 26,
            "parentBillRunName": "Sample Text Data",
            "scheduleId": 23,
            "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": 25,
                "billRunName": "Sample Text Data",
                "billRunScheduleStatusTypeId": 16,
                "billRunScheduleStatusTypeName": "Sample Text Data",
                "accountId": 17,
                "accountName": "Sample Text Data",
                "periodStart": "2021-04-26T15:25:27.587Z",
                "periodEnd": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 21,
                "createdByUserName": "Sample Text Data",
                "orderId": 7,
                "orderName": "Sample Text Data",
                "parentBillRunId": 26,
                "parentBillRunName": "Sample Text Data",
                "scheduleId": 5,
                "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": 11,
        "billRunName": "Sample Text Data",
        "billRunScheduleStatusTypeId": 25,
        "billRunScheduleStatusTypeName": "Sample Text Data",
        "accountId": 17,
        "accountName": "Sample Text Data",
        "periodStart": "2021-04-26T15:25:27.587Z",
        "periodEnd": "2021-04-26T15:25:27.587Z",
        "createdByUserId": 0,
        "createdByUserName": "Sample Text Data",
        "orderId": 11,
        "orderName": "Sample Text Data",
        "parentBillRunId": 23,
        "parentBillRunName": "Sample Text Data",
        "scheduleId": 18,
        "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

{
    "collectionTypeId": 2,
    "currencyExchangeId": null,
    "accountId": 153,
    "periodStart": "2022-06-01T00:00:00",
    "periodEnd": "2022-06-30T00:00:00",
    "postingDate": "2022-04-20T00:00:00",
    "runBilling": true,
    "runBillUsage": true,
    "runDelivery": false,
    "runContract": false,
    "runPayment": false,
    "runPaymentTerm": false,
    "runRenderInvoice": true,
    "runInvoicing": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "1ea52c52-82f9-4566-82d2-20255bacaa9a",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 4,
                "action": "created",
                "dtoTypeKey": "billRunSchedule",
                "instance": {
                    "identity": 4,
                    "created": "2022-04-20T13:45:47.423Z",
                    "billRunScheduleStatusTypeId": 1,
                    "billRunScheduleStatusTypeName": "Scheduled",
                    "accountId": 153,
                    "accountName": "admin",
                    "periodStart": "2022-06-01T00:00:00Z",
                    "periodEnd": "2022-06-30T00:00:00Z",
                    "createdByUserId": 153,
                    "createdByUserName": "admin",
                    "billRunSettings": "{\r\n  \"runBillUsage\": true,\r\n  \"runBilling\": true,\r\n  \"runInvoicing\": true,\r\n  \"runContract\": false,\r\n  \"runPayment\": false,\r\n  \"runRenderInvoice\": true,\r\n  \"runDelivery\": false,\r\n  \"runPaymentTerm\": false,\r\n  \"collectionTypeId\": 2,\r\n  \"currencyExchangeId\": 4,\r\n  \"postingDate\": \"2022-04-20T00:00:00Z\",\r\n  \"ownerId\": 1\r\n}"
                }
            }
        ]
    }
}
POSTBillRun/Schedule/Recurring
Create a new Recurring BillRunSchedule object.
Create a new Recurring BillRunSchedule object.
POST BillRun/Schedule/Recurring

{
    "billRunId": 21,
    "billRunScheduleStatusTypeId": 22,
    "accountId": 4,
    "periodStart": "2021-04-26T15:25:27.587Z",
    "periodEnd": "2021-04-26T15:25:27.587Z",
    "createdByUserId": 2,
    "orderId": 11,
    "parentBillRunId": 5,
    "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": 17,
                "billRunName": "Sample Text Data",
                "billRunScheduleStatusTypeId": 26,
                "billRunScheduleStatusTypeName": "Sample Text Data",
                "accountId": 19,
                "accountName": "Sample Text Data",
                "periodStart": "2021-04-26T15:25:27.587Z",
                "periodEnd": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 17,
                "createdByUserName": "Sample Text Data",
                "orderId": 25,
                "orderName": "Sample Text Data",
                "parentBillRunId": 6,
                "parentBillRunName": "Sample Text Data",
                "scheduleId": 7,
                "billRunSettings": "Sample Text Data"
            }
        ]
    }
}
POSTBillRun/Schedule/{id}/Cancel
Cancel an existing BillRunSchedule based on the {id} provided.
{id}Unique identifier for the BillRunSchedule object.