v61

OpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Portal Developers

List Developers

Lists the developers that have registered for this portal. Each developer can be registered to one portal and must be approved to login unless using the developer auto-approve setting.

get/v3/portals/{portalId}/developers

Query parameters

page[size]integer
Example:10

The maximum number of items to include per page. The last page of a collection may include fewer items.

page[number]integer
Example:1

Determines which page of the entities to retrieve.

sortstring

Sorts a collection of developers. Supported sort attributes are:

  • created_at
  • updated_at
  • email
  • name
  • status

Filter developers returned in the response.

Response

A paginated list of developers in a portal.

Example response

{
  "meta": {
    "page": {
      "number": 1,
      "size": 10,
      "total": 4
    }
  },
  "data": [
    {
      "id": "8cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
      "email": "jane.developer@example.com",
      "full_name": "Jane Dev",
      "status": "approved",
      "created_at": "2022-11-15T20:37:41.457Z",
      "updated_at": "2022-11-15T20:37:47.456Z"
    },
    {
      "id": "4cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
      "email": "john.developer@example.com",
      "full_name": "John Dev",
      "status": "revoked",
      "created_at": "2022-11-15T20:37:41.457Z",
      "updated_at": "2022-11-15T20:37:47.456Z"
    },
    {
      "id": "6cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
      "email": "john.developer@example.com",
      "full_name": "Jim Dev",
      "status": "pending",
      "created_at": "2022-11-15T20:37:41.457Z",
      "updated_at": "2022-11-15T20:37:47.456Z"
    },
    {
      "id": "7cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
      "email": "john.developer@example.com",
      "full_name": "Jan Dev",
      "status": "rejected",
      "created_at": "2022-11-15T20:37:41.457Z",
      "updated_at": "2022-11-15T20:37:47.456Z"
    }
  ]
}