TAG LINE
TAG LINE
SMALL TITLE
This system defined entity represents the individual days of the week.
identity READ-ONLY | "identity": 10 Type: Number This is the unique numeric identifier for the DayOfWeekType |
name READ-ONLY | "name": "Monday" Type: String The system defined day of the week. These are used in conjunction with Time Periods for rating usage. |
sortOrder READ-ONLY | "sortOrder": 24 Type: Number Unused |
| GET | DayOfWeekType/ |
| Retrieve all of the DayOfWeekType objects. | |
Retrieve all of the DayOfWeekType objects. GET DayOfWeekType/ HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"totalCount": 1,
"items": [
{
"identity": 1,
"name": "Monday",
"sortOrder": 9
}
]
} | |
| GET | DayOfWeekType/Paged |
| Retrieve all of the DayOfWeekType 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 DayOfWeekType objects in a paged fashion. GET DayOfWeekType/Paged HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"pagination": {
"pageNumber": 1,
"pageSize": 20,
"excludeTotalCount": false
},
"pagedResults": {
"totalCount": 1,
"items": [
{
"identity": 1,
"name": "Monday",
"sortOrder": 21
}
]
}
} | |
| GET | DayOfWeekType/{id} |
| Retrieve an instance of the DayOfWeekType object by its ID. | |
| {id} | Unique identifier for the DayOfWeekType object. |
Retrieve an instance of the DayOfWeekType object by its ID. GET DayOfWeekType/{id}HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"instance": {
"identity": 1,
"name": "Monday",
"sortOrder": 13
}
} | |