From ec5b4f3142ec8e29cfe3de7a4ac455a158b26d9f Mon Sep 17 00:00:00 2001 From: Philip Scott Date: Thu, 7 Aug 2025 12:07:11 -0400 Subject: [PATCH] add creation date to get session --- docs/rest-api/dispatch/get-session.mdx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/rest-api/dispatch/get-session.mdx b/docs/rest-api/dispatch/get-session.mdx index 3bfbf47..c14a109 100644 --- a/docs/rest-api/dispatch/get-session.mdx +++ b/docs/rest-api/dispatch/get-session.mdx @@ -25,10 +25,16 @@ authMethod: "bearer" control. + + The creation date of the cloud computer session. Formatted according to + [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) (e.g. + 2006-01-02T15:04:05Z07:00). + + - The termination time of the cloud computer session. Formatted according to + The termination date of the cloud computer session. Formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) (e.g. - 2006-01-02T15:04:05Z07:00). null if the session hasn't terminated yet. + 2006-01-02T15:04:05Z07:00). `null` if the session hasn't terminated yet. @@ -47,6 +53,7 @@ curl -H 'Authorization: Bearer ' \ "session_id": "c5772689-2255-4e59-8cea-b846cda7ad4e", "embed_url": "https://96xljbfypmn3ibra366yqapci.hyperbeam.com/AAEjQFOIRnyeb81XbBsHMw?token=VTWsp1KGn4lLySRkUCmmAhsCcqJrPdhTXNS0Y-KPwHU", "admin_token": "DrXWd9QguPRSXwhQn4yJ66sExpoV0BZtAfZsseYECKo", + "creation_date": "2025-01-02T15:04:05Z07:00", "termination_date": null } ```