v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Applications

List Developers by Application

Lists each developer that can access the given application for this portal.

get/v3/portals/{portalId}/applications/{applicationId}/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 set of developers for an application. Supported sort attributes are:

  • id

Filter application developers returned in the response.

Response

A paginated list developers of an application.

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"
    },
    {
      "id": "4cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
      "email": "john.developer@example.com",
      "full_name": "John Dev"
    },
    {
      "id": "6cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
      "email": "jim.developer@example.com",
      "full_name": "Jim Dev"
    },
    {
      "id": "7cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
      "email": "jan.developer@example.com",
      "full_name": "Jan Dev"
    }
  ]
}