Goldmine
Workspaces

Fetch a single workspace by ID.

POST
/accounts.v1.Accounts/GetWorkspace

Returns the workspace record identified by workspace_id. The caller must be a member of the workspace; requests for workspaces the caller does not belong to are rejected with permission_denied.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://loading/accounts.v1.Accounts/GetWorkspace" \  -H "Content-Type: application/json" \  -d '{    "workspaceId": "AAECAwQFBgcICQoLDA0ODw=="  }'
{
  "workspace": {
    "id": "AAECAwQFBgcICQoLDA0ODw==",
    "name": "Acme Trading",
    "description": "Primary trading workspace.",
    "createdAt": "2026-01-15T10:00:00Z",
    "updatedAt": "2026-03-02T14:22:30Z"
  }
}
Empty