Skip to main content

DashboardSessionResponse

Response schema for a dashboard session

data objectrequired

This is an object representing a dashboard session in the app.

created_atstring<date-time>required

Time at which the object was created.

idstringrequired

Unique identifier for the object.

Possible values: Value must match regular expression ^ds_\w{12}$

objectstringrequired

String representing the object's type.

Possible values: [dashboard_session]

return_urlstring<uri>nullablerequired

The URL to redirect to when the user signs out of the session.

urlstring<uri>required

The short-lived URL of the dashboard session. When the user visits this URL, their browser will be logged in to the account.

user_idstringrequired

The ID of the user associated with the dashboard session.

Possible values: Value must match regular expression ^user_\w{12}$

DashboardSessionResponse
{
"data": {
"created_at": "2017-09-12T12:34:55Z",
"id": "ds_d025a96ac0c6",
"object": "dashboard_session",
"return_url": "https://example.com/dashboard",
"url": "https://savvycal.app/d/session/ds_d025a96ac0c6/XXXXXXX",
"user_id": "user_d025a96ac0c6"
}
}