cURL
curl --request GET \ --url https://app.getcensus.com/api/v1/workspace \ --header 'Authorization: Bearer <token>'
{ "status": "success", "data": { "id": 123, "name": "My Workspace", "organization_id": 1, "created_at": "2023-09-05T19:42:42.672Z", "notification_emails": [ "[email protected]" ] } }
Retrieve the details of the workspace authenticated with the current Workspace API Token.
Bearer token for the current workspace. Can be retrieved from the Workspace's settings page.
Successfully retrieved authenticated workspace details.
The outcome of the fetch request
success
"success"
Show child attributes
The id of the retrieved workspace.
123
The name of the workspace. Must be unique within the organization.
"My Workspace"
The id of the organization the workspace belongs to.
1
The timestamp of when the workspace was created.
"2023-09-05T19:42:42.672Z"
The list of emails that will receive alerts from the workspace.
["[email protected]"]
Was this page helpful?