TAG LINE
TAG LINE
SMALL TITLE

Schedule

(API Version v7)


What can you do with Schedule?


Properties

Property Details
identity
READ-ONLY
"identity": 13
Type: Number
This is the unique numeric identifier for the Schedule
ownerId
READ-ONLY
"ownerId": 1
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.
name
"name": "Hello World"
Type: String
firstScheduleStart
"firstScheduleStart": "2021-04-26T15:25:27.587Z"
Type: Date
Date and time values are specified in the ISO 8601 format.
scheduleEventTypeId
"scheduleEventTypeId": 13
Type: Number
Unique identifier for the associated ScheduleEventType object.
scheduleEventTypeName
"scheduleEventTypeName": "Sample Name"
Type: String
The name of the object associated with the scheduleEventTypeId property.
scheduleStatusTypeId
"scheduleStatusTypeId": 4
Type: Number
Unique identifier for the associated ScheduleStatusType object.
scheduleStatusTypeName
"scheduleStatusTypeName": "Sample Name"
Type: String
The name of the object associated with the scheduleStatusTypeId property.
frequency
"frequency": 0
Type: Number
monthlyRecurTypeId
"monthlyRecurTypeId": 0
Type: Number
Unique identifier for the associated MonthlyRecurType object.
monthlyRecurTypeName
"monthlyRecurTypeName": "Sample Name"
Type: String
The name of the object associated with the monthlyRecurTypeId property.
scheduleData
"scheduleData": "Hello World"
Type: String
scheduleFrequencyTypeId
"scheduleFrequencyTypeId": 6
Type: Number
Unique identifier for the associated ScheduleFrequencyType object.
scheduleFrequencyTypeName
"scheduleFrequencyTypeName": "Sample Name"
Type: String
The name of the object associated with the scheduleFrequencyTypeId property.


End Points

POSTSchedule/BillRun
Create a new instance of the Schedule object.
Create a new instance of the Schedule object.
POST Schedule/BillRun

{
    "name": "Sample Text Data",
    "firstScheduleStart": "2021-04-26T15:25:27.587Z",
    "scheduleEventTypeId": 4,
    "scheduleStatusTypeId": 3,
    "frequency": 8,
    "monthlyRecurTypeId": 16,
    "scheduleData": "Sample Text Data",
    "scheduleFrequencyTypeId": 4
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 17,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "firstScheduleStart": "2021-04-26T15:25:27.587Z",
                "scheduleEventTypeId": 12,
                "scheduleEventTypeName": "Sample Text Data",
                "scheduleStatusTypeId": 10,
                "scheduleStatusTypeName": "Sample Text Data",
                "frequency": 18,
                "monthlyRecurTypeId": 2,
                "monthlyRecurTypeName": "Sample Text Data",
                "scheduleData": "Sample Text Data",
                "scheduleFrequencyTypeId": 20,
                "scheduleFrequencyTypeName": "Sample Text Data"
            }
        ]
    }
}