Skip to main content
GET
/
v1
/
workspace
Get the current workspace's plan and seat count
curl --request GET \
  --url https://api.scribe-mail.com/v1/workspace \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "plan": {
      "status": "<string>",
      "cancel_at_period_end": true,
      "started_at": "2023-11-07T05:31:56Z",
      "ends_at": "2023-11-07T05:31:56Z"
    },
    "seat_count": 123
  }
}

Authorizations

Authorization
string
header
required

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

Response

Success

data
object
required