TAG LINE
TAG LINE
SMALL TITLE

Day of Week Type

(API Version v5)


This system defined entity represents the individual days of the week.


What can you do with DayOfWeekType?


Properties

Property Details
identity
READ-ONLY
"identity": 16
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": 5
Type: Number
Unused


End Points

GETDayOfWeekType/
Retrieve all of the DayOfWeekType objects.
Retrieve all of the DayOfWeekType objects.
GET DayOfWeekType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Monday",
            "sortOrder": 15
        }
    ]
}
GETDayOfWeekType/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
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,
                "name": "Monday",
                "sortOrder": 4
            }
        ]
    }
}
GETDayOfWeekType/{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}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Monday",
        "sortOrder": 25
    }
}