Billing Schedule

The billing schedule record exposes a billing schedule to REST web services. This record:

This record enables you to create a billing schedule that can be applied to a sales order, a line item on a sales order, or a project. For details about this type of transaction, see Billing Schedules.

You must enable the Advanced Billing feature before you can use this record through REST web services.

The REST API Browser includes information about the field names and field types of the billing schedule record and about the HTTP methods, request parameters, and operations available to this record.

For details, see the REST API Browser’s billing schedule reference page.

For information about using the REST API Browser, see The REST API Browser.

Record ID

The record ID for a billing schedule REST record is BillingSchedule.

Code Samples

These samples show common use cases for billing schedule.

            POST: https://demo123.suitetalk.api.netsuite.com/services/rest/record/v1/BillingSchedule/
{ "frequency": { "id": "QUARTERLY", "refName": "Quarterly" }, "inArrears": true, "initialAmount": 100.0, "name": "NetSuite Test", "numberRemaining": 4, "repeatEvery": { "id": "1", "refName": "1" }, "scheduleType": { "id": "STD", "refName": "Standard" }
}
GET: https://demo123.suitetalk.api.netsuite.com/services/rest/record/v1/BillingSchedule/106
PATCH: https://demo123.suitetalk.api.netsuite.com/services/rest/record/v1/BillingSchedule/106
{ "frequency": { "id": "QUARTERLY", "refName": "Quarterly" }, "inArrears": true, "initialAmount":50.0, "name": "NetSuite Test", "numberRemaining": 2, "repeatEvery": { "id": "1", "refName": "1" }, "scheduleType": { "id": "STD", "refName": "Standard" }
}
DELETE: https://demo123.suitetalk.api.netsuite.com/services/rest/record/v1/billingSchedule/106 

          

Related Topics

REST Web Services Supported Records
SuiteTalk REST Web Services Overview and Setup
Working with Records
NetSuite Record Structure
The REST API Browser

General Notices