Skip to main content
GET
/
orgs
/
{orgId}
/
clients
Get Clients by Organization
curl --request GET \
  --url https://eu-cloudflare.vg-stuff.com/orgs/{orgId}/clients \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": "<array>",
  "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

Query Parameters

page
number
default:1
pageSize
number
default:20

Response

Successful response

success
boolean
required
message
string
required
data
array
required
total
number
required
totalPages
number
required
currentPage
number
required