Skip to main content
GET
/
workspaceManagement
/
workspaces
/
{uuid}
Get workspace
curl --request GET \
  --url https://api.getcargo.io/v1/workspaceManagement/workspaces/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "workspace": {
    "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.

Path Parameters

uuid
string
required

Resource UUID

Response

Successful response

workspace
object
required