GET
https://release0.com/api
/
v1
/
workspaces
/
{workspaceId}
curl --request GET \
  --url https://release0.com/api/v1/workspaces/{workspaceId} \
  --header 'Authorization: Bearer <token>'
{
  "workspace": {
    "id": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "lastActivityAt": "<string>",
    "name": "<string>",
    "icon": "<string>",
    "slug": "<string>",
    "plan": "<string>",
    "stripeId": "<string>",
    "isQuarantined": true,
    "isSuspended": true,
    "isPastDue": true,
    "isVerified": true,
    "billingCycleStart": 123,
    "paymentFailedAt": "<string>",
    "stripeConnectId": "<string>",
    "chatUsage": 123,
    "redeemedCoupons": "<string>",
    "extras": [
      "<string>"
    ],
    "addons": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

Query Parameters

getDefault
boolean

Response

200
application/json

Successful response

The response is of type object.