v61

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

Create Developer Account

Creates a new developer account in the specified portal. SAML login is currently not supported.

post/v3/portals/{portalId}/developers

Request body

emailstring email required
full_namestring required
status'approved' | 'pending' | 'revoked' | 'rejected'

When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status.

send_invitation_emailboolean

When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested.

Example request

{
  "email": "developer@example.com",
  "full_name": "Developer Name"
}

Response

Details about the created developer in a portal.

idstring uuid required

Contains a unique identifier used for this resource.

created_atstring date-time required

An ISO-8601 timestamp representation of entity creation date.

updated_atstring date-time required

An ISO-8601 timestamp representation of entity update date.

emailstring email required
full_namestring required
status'approved' | 'pending' | 'revoked' | 'rejected' required

The status of a developer in a portal. Approved developers can log in, create applications, and view and register for products they have access to. Pending, revoked, and rejected developers cannot login or view any non-public portal information, or create or modify applications or registrations.

Example response

{
  "id": "7cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
  "email": "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"
}