---
title: "Create Developer Account"
method: POST
path: "/v3/portals/{portalId}/developers"
tags: ["Portal Developers"]
---

# Create Developer Account

`POST /v3/portals/{portalId}/developers`

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

## Request body

- CreateDeveloperRequest — Request body for creating a developer in a portal.
  - `email` string, email, required
  - `full_name` string, 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_email` boolean — When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested.

## Response `201`

Details about the created developer in a portal.

- PortalDeveloper
  - `id` string, uuid, required — Contains a unique identifier used for this resource.
  - `created_at` string, date-time, required — An ISO-8601 timestamp representation of entity creation date.
  - `updated_at` string, date-time, required — An ISO-8601 timestamp representation of entity update date.
  - `email` string, email, required
  - `full_name` string, 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.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `409` — Conflict

---

[API](https://skmtc.net/kong/apis/konnect-api-go-sdk.md) · [All operations](https://skmtc.net/kong/apis/konnect-api-go-sdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kong/konnect-api-go-sdk/versions/f920f418f552/schema)
