get
GET
/access/planning/session/getGet a session by its id.
Request
Query Params
id
integer
required
session id
Example:
1
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
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
{
"id": 1,
"start": "2022-06-08T12:00:00.000Z",
"end": "2022-06-25T12:00:00.000Z",
"type": "early-access",
"createdAt": "2022-06-20T05:27:39.000Z",
"updatedAt": "2022-06-20T05:27:39.000Z"
}
Last modified: 2 年前