Delivery Schedule Options

Get Delivery Schedule Options

GET /api/.../readerservices/deliveryschedule?includeEmptyObject=true

Return a list of all delivery schedule options in the system. Include the '(none)' entry for a user listbox or combobox.

Request Information

Parameters
Name Type Required Description
includeEmptyObject Boolean No Set to 'true' to return an empty object with DeliveryRouteID set to '0' and Description set to '(none)'. This may be used when populating a listbox for a user selection.

Response Information

Example
application/json, text/json
[
  {
    "ORSDeliveryScheduleTypeID": 0,
    "Description": "(None)"
  },
  {
    "ORSDeliveryScheduleTypeID": 1,
    "Description": "Exact Date"
  },
  {
    "ORSDeliveryScheduleTypeID": 2,
    "Description": "Daily"
  },
  {
    "ORSDeliveryScheduleTypeID": 3,
    "Description": "Weekly"
  },
  {
    "ORSDeliveryScheduleTypeID": 4,
    "Description": "Biweekly"
  },
  {
    "ORSDeliveryScheduleTypeID": 5,
    "Description": "Monthly"
  },
  {
    "ORSDeliveryScheduleTypeID": 6,
    "Description": "Bimonthly"
  },
  {
    "ORSDeliveryScheduleTypeID": 7,
    "Description": "Quarterly"
  },
  {
    "ORSDeliveryScheduleTypeID": 8,
    "Description": "Semiannually"
  },
  {
    "ORSDeliveryScheduleTypeID": 9,
    "Description": "Annually"
  }
]