Get Platform Admins
Retrieve a list of all administrators for a specific platform.
Endpoint
GET /api/platform/:platformId/admins
Parameters
| Parameter | Type | Description |
|---|---|---|
| platformId | string | The unique identifier of the platform |
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| page | number | Page number for pagination (optional) |
| limit | number | Number 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