get
GET
/access/planning/getGet all the sessions of the Planning. optional filters for type and date are available.
Request
Query Params
type
string
optional
optional filter using session type [early-access, whitelist]
after
string
optional
optional date filter: UTC format YYYY-MM-DDThh:mm:ss.000Z
Header Params
Authorization
string
required
Example:
Bearer {{token}}
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
sessions
array [object {6}]
required
id
integer
session id
start
string
UTC date format
YYYY-MM-DDThh:mm:ss.000Z
end
string
UTC date format
YYYY-MM-DDThh:mm:ss.000Z
type
string
session type
[early-access, whitelist]
createdAt
string
UTC date format
YYYY-MM-DDThh:mm:ss.000Z
updatedAt
string
UTC date format
YYYY-MM-DDThh:mm:ss.000Z
Example
{
"sessions": [
{
"id": 3,
"start": "2022-06-08T12:00:00.000Z",
"end": "2022-06-25T12:00:00.000Z",
"type": "early-access",
"createdAt": "2022-06-20T06:36:00.000Z",
"updatedAt": "2022-06-20T06:36:00.000Z"
}
]
}
Last modified: 2 年前