GET
/
workspace
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": [
      "notifications@mycompany.slack.com"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer token for the current workspace. Can be retrieved from the Workspace's settings page.

Response

200
application/json
Successfully retrieved authenticated workspace details.
status
enum<string>
required

The outcome of the fetch request

Available options:
success
Example:

"success"

data
object
required