Skip to main content

Get Platform Admins

Retrieve a list of all administrators for a specific platform.

Endpoint

GET /api/platform/:platformId/admins

Parameters

ParameterTypeDescription
platformIdstringThe unique identifier of the platform

Query Parameters

ParameterTypeDescription
pagenumberPage number for pagination (optional)
limitnumberNumber of results per page (optional)

Response

{
"admins": [
{
"id": "string",
"email": "string",
"firstName": "string",
"lastName": "string",
"role": "admin",
"profileImage": "string",
"isActive": boolean,
"createdAt": "string",
"updatedAt": "string"
}
],
"total": number,
"page": number,
"limit": number
}

Notes

  • Only platform administrators can access this endpoint
  • Returns all admin users for the platform
  • Results are paginated by default (20 items per page)
  • Admins are sorted by creation date in descending order