---
title: "Create a reseller organization"
method: POST
path: "/v3/resellers/{resellerId}/organizations"
tags: ["ResellerOrganizations"]
---

# Create a reseller organization

`POST /v3/resellers/{resellerId}/organizations`

Creates a new reseller organization.

## Path parameters

- `resellerId` string, required

## Request body

- OrganizationCreateRequestModel
  - `name` string, required — Name of the organization.
  - `email` string, email, required — Notification email of the organization.
  - `description` string, nullable — Description for the organization.
  - `allowedUsers` integer, required — Max number of users the organization is allowed to create. Set to -1 to allow unlimited users.
  - `address` AddressRequestModel
    - `addressLine1` string, nullable — Address line1.
    - `addressLine2` string, nullable — Address line2.
    - `city` string, nullable — Address city.
    - `state` string, nullable — Address state.
    - `country` string, nullable — Address country.
    - `postalCode` string, nullable — Address postal code.
  - `resellerId` string, nullable — Unique identifier for the reseller.

## Response `201`

Created

- ResellerOrganizationDto
  - `id` string, required
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time, required
  - `organizationAlias` string, nullable
  - `name` string, required
  - `email` string, required
  - `description` string, required
  - `allowedUsers` integer, required
  - `address` AddressDto, required
    - `addressLine1` string, nullable
    - `addressLine2` string, nullable
    - `city` string, nullable
    - `state` string, nullable
    - `country` string, nullable
    - `postalCode` string, nullable

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict
- `429` — Too Many Requests
- `500` — Server Error

---

[API](https://skmtc.net/cryptlex/apis/cryptlex-web-api.md) · [All operations](https://skmtc.net/cryptlex/apis/cryptlex-web-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cryptlex/cryptlex-web-api/versions/ec1259c12475/schema)
