Skip to main content
GET
/
workspaceManagement
/
workspaces
/
list
List workspaces
curl --request GET \
  --url https://api.getcargo.io/v1/workspaceManagement/workspaces/list \
  --header 'Authorization: Bearer <token>'
{
  "workspaces": [
    {
      "uuid": "<string>",
      "name": "<string>",
      "allowedEmailDomains": [
        "<string>"
      ],
      "temporalNamespace": "<string>",
      "temporalTaskQueuePrefix": "<string>",
      "openAiVectorStoreId": "<string>",
      "syncs": [
        {
          "domain": "connection",
          "temporalScheduleWorkflowId": "<string>",
          "cron": "<string>"
        }
      ],
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "logoUrl": "<string>",
      "metadata": {
        "mainGoal": [
          "<string>"
        ],
        "salesRepCount": "<string>",
        "gtmStackList": [
          "<string>"
        ],
        "referralSource": [
          "<string>"
        ]
      },
      "chromeExtensionMasterAgentUuid": "<string>",
      "chromeExtensionAvailableAgentUuids": [
        "<string>"
      ],
      "defaultRoleUuid": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Successful response

Response body schema.

workspaces
object[]
required