---
title: "Create a new partner"
method: POST
path: "/api/v1/admin/partners"
tags: ["Partners", "Admin"]
---

# Create a new partner

`POST /api/v1/admin/partners`

Create a new partner

## Request body

- PartnerInput — Partner creation input
  - `name` string, required — The name of the partner
  - `email` string, email, required — The email of the partner
  - `website` string, nullable — The website URL of the partner (protocol optional, will be normalized)

## Response `201`

Created

- PartnerCreateResponse
  - `success` boolean, required — Indicates if the request was successful
  - `data` object, required
    - `id` string, uuid, required — The unique identifier of the created partner
    - `name` string, required — The name of the created partner
    - `email` string, email, required — The email of the created partner
    - `client_id` string, required — The client ID of the created partner
    - `client_secret` string, required — The unhashed client secret (only returned once upon creation)
    - `website` string, uri, nullable, required — The website URL of the partner

## Other responses

- `400` — Bad Request
- `401` — Unauthorized

## Changes

- **2026-06-16** `b372e7d5563d` — 1 breaking, 1 warning, 4 info
  - the `error/code` response's property type/format changed from `string`/`` to ``/`` for status `400`
  - removed the optional property `error/errors` from the response with the `400` status
  - added the new optional request property `website`
  - added the optional property `error/metadata` to the response with the `400` status
  - …2 more
- **2025-11-03** `6637b341d86d` — 1 info
  - endpoint added
- **2025-11-02** `919eb7a392aa` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/banqzinc/apis/quidkey-api/changes/api/v1/admin/partners/post.md)

---

[API](https://skmtc.dev/banqzinc/apis/quidkey-api.md) · [All operations](https://skmtc.dev/banqzinc/apis/quidkey-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/banqzinc/quidkey-api/revisions/f86d2bdbcb08/schema)
