---
title: "Create a new partner."
method: POST
path: "/partners/create"
tags: ["Partner"]
---

# Create a new partner.

`POST /partners/create`

Allows a moderator to create a new partner. The partner is initially created with a status of 'ACTIVE'.

## Request body

- object
  - `userId` string, uuid, required — The Id of the partner.
  - `status` string, required — The current status of the partner. Default is set to active.
  - `fullName` string, required — The full name of the partner.

## Response `201`

The partner was created successfully. The response includes the created partner details.

- object
  - `partnerNameId` string, uuid — The unique identifier of the partner.
  - `userId` string, uuid — The Id of the partner.
  - `status` string — The current status of the partner. Default is set to active.
  - `fullName` string — The full name of the partner.

## Other responses

- `400` — Validation error. This can occur if the request body does not match the expected format.
- `500` — Internal server error.

---

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