Skip to main content
GET
/
workspace
/
default
Retrieve the default workspace
curl --request GET \
  --url https://app.myhero.so/workspace/default \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "_id": "<string>",
    "name": "<string>",
    "isDefault": false,
    "isShared": false,
    "organizationId": "<string>",
    "ownerId": "<string>",
    "collaborators": [
      {
        "userId": "<string>"
      }
    ],
    "collaboratorTeams": [
      {
        "teamId": "<string>"
      }
    ],
    "createdAt": 123,
    "updatedAt": 123,
    "description": "<string>"
  }
}

Authorizations

Authorization
string
header
required

HERO personal access token

Response

200 response

data
object
required