Skip to main content
GET
/
v1
/
workspace
List Workspaces
curl -X GET "https://management-api.suprsend.com/v1/workspace" \
  --header 'Authorization: ServiceToken <SERVICE_TOKEN>' \
  --header 'Content-Type: application/json'
{
  "meta": {
    "count": 2,
    "limit": 10,
    "offset": 0
  },
  "results": [
    {
      "uid": "wksp_exampleUid01",
      "slug": "staging",
      "data_center": {},
      "is_expired": false,
      "has_limit_reached": false,
      "name": "Staging",
      "description": "Development environment to test iterations internally",
      "mode": "sandbox"
    },
    {
      "uid": "wksp_exampleUid02",
      "slug": "production",
      "data_center": {},
      "is_expired": false,
      "has_limit_reached": false,
      "name": "Production",
      "description": "Final environment to send notifications to live users",
      "mode": "production"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.suprsend.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

ServiceToken <token>
string
header
required

You can get Service Token from SuprSend dashboard -> Account Settings -> Service Tokens section.

Response

Successfully retrieved workspaces.

meta
object

Pagination metadata (when applicable)

results
object[]