Skip to main content
GET
/
orgs
/
{orgId}
/
clients
Get Clients by Organization
curl --request GET \
  --url https://eu-gcp-api.vg-stuff.com/v3/orgs/{orgId}/clients \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": [
    {}
  ],
  "total": 123,
  "totalPages": 123,
  "currentPage": 123
}
Returns all client workspaces within the organization. You must have organization admin access.
Clients represent individual workspaces or teams within your organization structure.

Authorizations

Authorization
string
header
required

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

Path Parameters

orgId
string
required

The unique identifier of the organization

Query Parameters

page
integer
default:1

Page number for pagination (default: 1)

pageSize
integer
default:20

Number of clients per page (default: 20)

Response

Clients retrieved successfully

success
boolean
required

Indicates if the request was successful

message
string
required

Response message

data
object[]
required

Array of client/workspace objects

total
integer
required

Total number of clients in the organization

totalPages
integer
required

Total number of pages available

currentPage
integer
required

Current page number