TAG LINE
TAG LINE
SMALL TITLE

Bill Run

(API Version v6)


A Bill Run is used to execute billing on a set of Bill Groups. There are multiple different options that can be selected on what should be included as actions of the Bill Run.


What can you do with BillRun?

  • DELETE BillRun/{id}
    Delete an instance of the BillRun object.

  • GET BillRun/
    Retrieve all of the BillRun objects.

  • GET BillRun/Paged
    Retrieve all of the BillRun objects in a paged fashion.

  • GET BillRun/Paged/Detail
    Retrieve all of the BillRun objects in a paged fashion with all object details.

  • GET BillRun/{id}
    Retrieve an instance of the BillRun object by its ID.

  • GET BillRun/{id}/Detail
    Retrieve deep detail of the BillRun object by its ID.

  • PATCH BillRun/{id}
    Update or Add the BillRun object and optionally make changes to any child objects.

  • POST BillRun/
    Create a new instance of the BillRun object.

  • PUT BillRun/{id}
    Update an existing instance of the BillRun object.


Properties

Property Details
identity
READ-ONLY
"identity": 25
Type: Number
This is the unique numeric identifier for the BillRun
billPeriodEnd
"billPeriodEnd": "2021-04-26T15:25:27.587Z"
Type: Date
The end date to look for billable transactions.

Date and time values are specified in the ISO 8601 format.
billPeriodStart
"billPeriodStart": "2021-04-26T15:25:27.587Z"
Type: Date
The start date to look for billable transactions.

Date and time values are specified in the ISO 8601 format.
ownerId
READ-ONLY
"ownerId": 22
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.
runBilling
"runBilling": true
Type: Boolean
Whether or not to calculate recurring and one-time charges as part of this Bill Run.
name
"name": "First of the Month Invoice Delivery"
Type: String
User defined name given to the Bill Run.
runDelivery
"runDelivery": true
Type: Boolean
Whether or not to deliver invoices as part of this Bill Run.
runRenderInvoice
"runRenderInvoice": true
Type: Boolean
Whether or not to generate a rendered PDF version of invoices as part of this Bill Run.
runPaymentTerm
"runPaymentTerm": true
Type: Boolean
Whether or not to execute Dunning Rules as part of this Bill Run.
runBillUsage
"runBillUsage": true
Type: Boolean
Whether or not calculate usage charges as part of this Bill Run.
enabled
READ-ONLY
"enabled": true
Type: Boolean
Whether or not Bill Run is enabled within the system to run.
runPaymentRetryTerms
"runPaymentRetryTerms": true
Type: Boolean
Whether or not to execute payment retries as part of this Bill Run.
collectionTypeId
"collectionTypeId": 5
Type: Number
Unique identifier for the associated CollectionType object.
collectionTypeName
"collectionTypeName": "Sample Name"
Type: String
The name of the object associated with the collectionTypeId property.
runInvoicing
"runInvoicing": true
Type: Boolean
Whether or not to generate invoice data and assign an invoice number as part of this Bill Run.
currencyExchangeId
"currencyExchangeId": 17
Type: Number
Unique identifier for the associated CurrencyExchange object.
currencyExchangeName
"currencyExchangeName": "Sample Name"
Type: String
The name of the object associated with the currencyExchangeId property.
runContract
"runContract": true
Type: Boolean
Whether or not to run Contract Enforcement rules as part of this Bill Run.
posting
"posting": "2021-04-26T15:25:27.587Z"
Type: Date
Specify the accounting posting date associated with this Bill Run.

Date and time values are specified in the ISO 8601 format.
billRunStatusTypeId
"billRunStatusTypeId": 18
Type: Number
Unique identifier for the associated BillRunStatusType object.
billRunStatusTypeName
"billRunStatusTypeName": "Sample Name"
Type: String
The name of the object associated with the billRunStatusTypeId property.
runPayment
"runPayment": true
Type: Boolean
Whether or not to run Collections as part of this Bill Run.
billRunTypeId
"billRunTypeId": 1
Type: Number
Unique identifier for the associated BillRunType object.
billRunTypeName
"billRunTypeName": "Sample Name"
Type: String
The name of the object associated with the billRunTypeId property.
runInvoicingContract
"runInvoicingContract": true
Type: Boolean


Patch Types

The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.

PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the BillRun object.

Standard PATCH objects:

DataFlow PATCH objects:


End Points

DELETEBillRun/{id}
Delete an instance of the BillRun 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 BillRun object.
Delete an instance of the BillRun object.
DELETE BillRun/{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": "billRun"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETBillRun/
Retrieve all of the BillRun objects.
Retrieve all of the BillRun objects.
GET BillRun/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "billPeriodEnd": "2021-04-26T15:25:27.587Z",
            "billPeriodStart": "2021-04-26T15:25:27.587Z",
            "ownerId": 27,
            "ownerName": "Sample Text Data",
            "runBilling": true,
            "name": "First of the Month Invoice Delivery",
            "runDelivery": true,
            "runRenderInvoice": true,
            "runPaymentTerm": true,
            "runBillUsage": true,
            "enabled": true,
            "runPaymentRetryTerms": true,
            "collectionTypeId": 15,
            "collectionTypeName": "Sample Text Data",
            "runInvoicing": true,
            "currencyExchangeId": 16,
            "currencyExchangeName": "Sample Text Data",
            "runContract": true,
            "posting": "2021-04-26T15:25:27.587Z",
            "billRunStatusTypeId": 16,
            "billRunStatusTypeName": "Sample Text Data",
            "runPayment": true,
            "billRunTypeId": 1,
            "billRunTypeName": "Sample Text Data",
            "runInvoicingContract": true
        }
    ]
}
GETBillRun/Paged
Retrieve all of the BillRun 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 BillRun objects in a paged fashion.
GET BillRun/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,
                "billPeriodEnd": "2021-04-26T15:25:27.587Z",
                "billPeriodStart": "2021-04-26T15:25:27.587Z",
                "ownerId": 14,
                "ownerName": "Sample Text Data",
                "runBilling": true,
                "name": "First of the Month Invoice Delivery",
                "runDelivery": true,
                "runRenderInvoice": true,
                "runPaymentTerm": true,
                "runBillUsage": true,
                "enabled": true,
                "runPaymentRetryTerms": true,
                "collectionTypeId": 25,
                "collectionTypeName": "Sample Text Data",
                "runInvoicing": true,
                "currencyExchangeId": 13,
                "currencyExchangeName": "Sample Text Data",
                "runContract": true,
                "posting": "2021-04-26T15:25:27.587Z",
                "billRunStatusTypeId": 7,
                "billRunStatusTypeName": "Sample Text Data",
                "runPayment": true,
                "billRunTypeId": 3,
                "billRunTypeName": "Sample Text Data",
                "runInvoicingContract": true
            }
        ]
    }
}
GETBillRun/Paged/Detail
Retrieve all of the BillRun objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
Retrieve all of the BillRun objects in a paged fashion with all object details.
GET BillRun/Paged/Detail
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,
                "billPeriodEnd": "2021-04-26T15:25:27.587Z",
                "billPeriodStart": "2021-04-26T15:25:27.587Z",
                "ownerId": 20,
                "ownerName": "Sample Text Data",
                "runBilling": true,
                "name": "First of the Month Invoice Delivery",
                "runDelivery": true,
                "runRenderInvoice": true,
                "runPaymentTerm": true,
                "runBillUsage": true,
                "enabled": true,
                "runPaymentRetryTerms": true,
                "collectionTypeId": 24,
                "collectionTypeName": "Sample Text Data",
                "runInvoicing": true,
                "currencyExchangeId": 22,
                "currencyExchangeName": "Sample Text Data",
                "runContract": true,
                "posting": "2021-04-26T15:25:27.587Z",
                "billRunStatusTypeId": 19,
                "billRunStatusTypeName": "Sample Text Data",
                "runPayment": true,
                "billRunTypeId": 21,
                "billRunTypeName": "Sample Text Data",
                "runInvoicingContract": true,
                "details": {
                    "groups": [
                        {
                            "identity": 99,
                            "name": "Sample Text Data",
                            "advanceInvoiceDays": 13,
                            "billDay": 37,
                            "invoiceDateProcessTypeId": 64,
                            "invoiceDateProcessTypeName": "Sample Text Data",
                            "invoiceCloseThresholdAmount": 72.95,
                            "usageBillingTypeId": 27,
                            "usageBillingTypeName": "Sample Text Data",
                            "invoiceDueDateTypeId": 14,
                            "invoiceDueDateTypeName": "Sample Text Data",
                            "usageBillDay": 7,
                            "invoiceDeliveryId": 67,
                            "invoiceDeliveryName": "Sample Text Data"
                        }
                    ],
                    "schedules": [
                        {
                            "identity": 59,
                            "created": "2021-04-26T15:25:27.587Z",
                            "start": "2021-04-26T15:25:27.587Z",
                            "complete": "2021-04-26T15:25:27.587Z",
                            "billRunId": 36,
                            "billRunName": "Sample Text Data",
                            "billRunScheduleStatusTypeId": 76,
                            "billRunScheduleStatusTypeName": "Sample Text Data",
                            "accountId": 33,
                            "accountName": "Sample Text Data",
                            "periodStart": "2021-04-26T15:25:27.587Z",
                            "periodEnd": "2021-04-26T15:25:27.587Z",
                            "createdByUserId": 41,
                            "createdByUserName": "Sample Text Data",
                            "orderId": 26,
                            "parentBillRunId": 20,
                            "parentBillRunName": "Sample Text Data",
                            "scheduleId": 82,
                            "scheduleName": "Sample Text Data",
                            "billRunSettings": "Sample Text Data"
                        }
                    ],
                    "recentSchedules": [
                        {
                            "identity": 29,
                            "created": "2021-04-26T15:25:27.587Z",
                            "start": "2021-04-26T15:25:27.587Z",
                            "complete": "2021-04-26T15:25:27.587Z",
                            "billRunId": 59,
                            "billRunName": "Sample Text Data",
                            "billRunScheduleStatusTypeId": 59,
                            "billRunScheduleStatusTypeName": "Sample Text Data",
                            "accountId": 96,
                            "accountName": "Sample Text Data",
                            "periodStart": "2021-04-26T15:25:27.587Z",
                            "periodEnd": "2021-04-26T15:25:27.587Z",
                            "createdByUserId": 28,
                            "createdByUserName": "Sample Text Data",
                            "orderId": 8,
                            "parentBillRunId": 65,
                            "parentBillRunName": "Sample Text Data",
                            "scheduleId": 87,
                            "scheduleName": "Sample Text Data",
                            "billRunSettings": "Sample Text Data"
                        }
                    ]
                }
            }
        ]
    }
}
GETBillRun/{id}
Retrieve an instance of the BillRun object by its ID.
{id}Unique identifier for the BillRun object.
Retrieve an instance of the BillRun object by its ID.
GET BillRun/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "billPeriodEnd": "2021-04-26T15:25:27.587Z",
        "billPeriodStart": "2021-04-26T15:25:27.587Z",
        "ownerId": 15,
        "ownerName": "Sample Text Data",
        "runBilling": true,
        "name": "First of the Month Invoice Delivery",
        "runDelivery": true,
        "runRenderInvoice": true,
        "runPaymentTerm": true,
        "runBillUsage": true,
        "enabled": true,
        "runPaymentRetryTerms": true,
        "collectionTypeId": 13,
        "collectionTypeName": "Sample Text Data",
        "runInvoicing": true,
        "currencyExchangeId": 20,
        "currencyExchangeName": "Sample Text Data",
        "runContract": true,
        "posting": "2021-04-26T15:25:27.587Z",
        "billRunStatusTypeId": 27,
        "billRunStatusTypeName": "Sample Text Data",
        "runPayment": true,
        "billRunTypeId": 4,
        "billRunTypeName": "Sample Text Data",
        "runInvoicingContract": true
    }
}
GETBillRun/{id}/Detail
Retrieve deep detail of the BillRun object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
{id}Unique identifier for the BillRun object.
Retrieve deep detail of the BillRun object by its ID.
GET BillRun/{id}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "billPeriodEnd": "2021-04-26T15:25:27.587Z",
        "billPeriodStart": "2021-04-26T15:25:27.587Z",
        "ownerId": 0,
        "ownerName": "Sample Text Data",
        "runBilling": true,
        "name": "First of the Month Invoice Delivery",
        "runDelivery": true,
        "runRenderInvoice": true,
        "runPaymentTerm": true,
        "runBillUsage": true,
        "enabled": true,
        "runPaymentRetryTerms": true,
        "collectionTypeId": 12,
        "collectionTypeName": "Sample Text Data",
        "runInvoicing": true,
        "currencyExchangeId": 12,
        "currencyExchangeName": "Sample Text Data",
        "runContract": true,
        "posting": "2021-04-26T15:25:27.587Z",
        "billRunStatusTypeId": 12,
        "billRunStatusTypeName": "Sample Text Data",
        "runPayment": true,
        "billRunTypeId": 21,
        "billRunTypeName": "Sample Text Data",
        "runInvoicingContract": true,
        "details": {
            "groups": [
                {
                    "identity": 99,
                    "name": "Sample Text Data",
                    "advanceInvoiceDays": 13,
                    "billDay": 37,
                    "invoiceDateProcessTypeId": 64,
                    "invoiceDateProcessTypeName": "Sample Text Data",
                    "invoiceCloseThresholdAmount": 72.95,
                    "usageBillingTypeId": 27,
                    "usageBillingTypeName": "Sample Text Data",
                    "invoiceDueDateTypeId": 14,
                    "invoiceDueDateTypeName": "Sample Text Data",
                    "usageBillDay": 7,
                    "invoiceDeliveryId": 67,
                    "invoiceDeliveryName": "Sample Text Data"
                }
            ],
            "schedules": [
                {
                    "identity": 59,
                    "created": "2021-04-26T15:25:27.587Z",
                    "start": "2021-04-26T15:25:27.587Z",
                    "complete": "2021-04-26T15:25:27.587Z",
                    "billRunId": 36,
                    "billRunName": "Sample Text Data",
                    "billRunScheduleStatusTypeId": 76,
                    "billRunScheduleStatusTypeName": "Sample Text Data",
                    "accountId": 33,
                    "accountName": "Sample Text Data",
                    "periodStart": "2021-04-26T15:25:27.587Z",
                    "periodEnd": "2021-04-26T15:25:27.587Z",
                    "createdByUserId": 41,
                    "createdByUserName": "Sample Text Data",
                    "orderId": 26,
                    "parentBillRunId": 20,
                    "parentBillRunName": "Sample Text Data",
                    "scheduleId": 82,
                    "scheduleName": "Sample Text Data",
                    "billRunSettings": "Sample Text Data"
                }
            ],
            "recentSchedules": [
                {
                    "identity": 29,
                    "created": "2021-04-26T15:25:27.587Z",
                    "start": "2021-04-26T15:25:27.587Z",
                    "complete": "2021-04-26T15:25:27.587Z",
                    "billRunId": 59,
                    "billRunName": "Sample Text Data",
                    "billRunScheduleStatusTypeId": 59,
                    "billRunScheduleStatusTypeName": "Sample Text Data",
                    "accountId": 96,
                    "accountName": "Sample Text Data",
                    "periodStart": "2021-04-26T15:25:27.587Z",
                    "periodEnd": "2021-04-26T15:25:27.587Z",
                    "createdByUserId": 28,
                    "createdByUserName": "Sample Text Data",
                    "orderId": 8,
                    "parentBillRunId": 65,
                    "parentBillRunName": "Sample Text Data",
                    "scheduleId": 87,
                    "scheduleName": "Sample Text Data",
                    "billRunSettings": "Sample Text Data"
                }
            ]
        }
    }
}
PATCHBillRun/{id}
Update or Add the BillRun object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array.
{id}Unique identifier for the BillRun object.
Update or Add the BillRun object and optionally make changes to any child objects.
PATCH BillRun/{id}

{
    "details": {},
    "billRuns": {
        "items": [
            {
                "patchType": "create",
                "patchClientId": 1,
                "billPeriodEnd": "2021-04-26T15:25:27.587Z",
                "billPeriodStart": "2021-04-26T15:25:27.587Z",
                "runBilling": true,
                "name": "First of the Month Invoice Delivery",
                "runDelivery": true,
                "runRenderInvoice": true,
                "runPaymentTerm": true,
                "runBillUsage": true,
                "runPaymentRetryTerms": true,
                "collectionTypeId": 0,
                "runInvoicing": true,
                "currencyExchangeId": 23,
                "runContract": true,
                "posting": "2021-04-26T15:25:27.587Z",
                "billRunStatusTypeId": 15,
                "runPayment": true,
                "billRunTypeId": 12,
                "runInvoicingContract": true
            }
        ]
    }
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "patch",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "action": "created",
                "dtoTypeKey": "billRun",
                "instance": {
                    "identity": 1,
                    "billPeriodEnd": "2021-04-26T15:25:27.587Z",
                    "billPeriodStart": "2021-04-26T15:25:27.587Z",
                    "ownerId": 15,
                    "ownerName": "Sample Text Data",
                    "runBilling": true,
                    "name": "First of the Month Invoice Delivery",
                    "runDelivery": true,
                    "runRenderInvoice": true,
                    "runPaymentTerm": true,
                    "runBillUsage": true,
                    "enabled": true,
                    "runPaymentRetryTerms": true,
                    "collectionTypeId": 4,
                    "collectionTypeName": "Sample Text Data",
                    "runInvoicing": true,
                    "currencyExchangeId": 20,
                    "currencyExchangeName": "Sample Text Data",
                    "runContract": true,
                    "posting": "2021-04-26T15:25:27.587Z",
                    "billRunStatusTypeId": 27,
                    "billRunStatusTypeName": "Sample Text Data",
                    "runPayment": true,
                    "billRunTypeId": 2,
                    "billRunTypeName": "Sample Text Data",
                    "runInvoicingContract": true
                }
            }
        ]
    }
}
POSTBillRun/
Create a new instance of the BillRun object.
Create a new instance of the BillRun object.
POST BillRun/

{
    "billPeriodEnd": "2021-04-26T15:25:27.587Z",
    "billPeriodStart": "2021-04-26T15:25:27.587Z",
    "runBilling": true,
    "name": "First of the Month Invoice Delivery",
    "runDelivery": true,
    "runRenderInvoice": true,
    "runPaymentTerm": true,
    "runBillUsage": true,
    "runPaymentRetryTerms": true,
    "collectionTypeId": 1,
    "runInvoicing": true,
    "currencyExchangeId": 8,
    "runContract": true,
    "posting": "2021-04-26T15:25:27.587Z",
    "billRunStatusTypeId": 10,
    "runPayment": true,
    "billRunTypeId": 11,
    "runInvoicingContract": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "billPeriodEnd": "2021-04-26T15:25:27.587Z",
                "billPeriodStart": "2021-04-26T15:25:27.587Z",
                "ownerId": 1,
                "ownerName": "Sample Text Data",
                "runBilling": true,
                "name": "First of the Month Invoice Delivery",
                "runDelivery": true,
                "runRenderInvoice": true,
                "runPaymentTerm": true,
                "runBillUsage": true,
                "enabled": true,
                "runPaymentRetryTerms": true,
                "collectionTypeId": 19,
                "collectionTypeName": "Sample Text Data",
                "runInvoicing": true,
                "currencyExchangeId": 14,
                "currencyExchangeName": "Sample Text Data",
                "runContract": true,
                "posting": "2021-04-26T15:25:27.587Z",
                "billRunStatusTypeId": 16,
                "billRunStatusTypeName": "Sample Text Data",
                "runPayment": true,
                "billRunTypeId": 2,
                "billRunTypeName": "Sample Text Data",
                "runInvoicingContract": true
            }
        ]
    }
}
PUTBillRun/{id}
Update an existing instance of the BillRun object.
Update an existing instance of the BillRun object.
PUT BillRun/{id}

{
    "identity": 1,
    "billPeriodEnd": "2021-04-26T15:25:27.587Z",
    "billPeriodStart": "2021-04-26T15:25:27.587Z",
    "runBilling": true,
    "name": "First of the Month Invoice Delivery",
    "runDelivery": true,
    "runRenderInvoice": true,
    "runPaymentTerm": true,
    "runBillUsage": true,
    "runPaymentRetryTerms": true,
    "collectionTypeId": 4,
    "runInvoicing": true,
    "currencyExchangeId": 26,
    "runContract": true,
    "posting": "2021-04-26T15:25:27.587Z",
    "billRunStatusTypeId": 16,
    "runPayment": true,
    "billRunTypeId": 2,
    "runInvoicingContract": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "billPeriodEnd": "2021-04-26T15:25:27.587Z",
                "billPeriodStart": "2021-04-26T15:25:27.587Z",
                "ownerId": 15,
                "ownerName": "Sample Text Data",
                "runBilling": true,
                "name": "First of the Month Invoice Delivery",
                "runDelivery": true,
                "runRenderInvoice": true,
                "runPaymentTerm": true,
                "runBillUsage": true,
                "enabled": true,
                "runPaymentRetryTerms": true,
                "collectionTypeId": 13,
                "collectionTypeName": "Sample Text Data",
                "runInvoicing": true,
                "currencyExchangeId": 21,
                "currencyExchangeName": "Sample Text Data",
                "runContract": true,
                "posting": "2021-04-26T15:25:27.587Z",
                "billRunStatusTypeId": 4,
                "billRunStatusTypeName": "Sample Text Data",
                "runPayment": true,
                "billRunTypeId": 7,
                "billRunTypeName": "Sample Text Data",
                "runInvoicingContract": true
            }
        ]
    }
}