---
title: "공급자 등록"
method: POST
path: "/v1/suppliers"
tags: ["공급자"]
---

# 공급자 등록

`POST /v1/suppliers`

공급자(발행자) 정보를 등록하고 `supplierKey`를 발급받습니다. 대리 정발행, 역발행 시 필수입니다.

활용 예시: [대리 정발행](/docs/api-introduction/usecase-delegated) | [역발행](/docs/api-introduction/usecase-reverse-email)

## Request body

- Supplier — 세금계산서를 발행하는 공급자(발행자) 정보. 공급자 등록 API(POST /v1/suppliers)의 요청 본문입니다.
  - `identificationNumber` string, required — 하이픈(-) 없는 10자리 숫자. 패턴: `^\d{10}$`
  - `taxRegistrationId` string — 4자리 숫자, `0000` 제외. 패턴: `^(?!0{4})\d{4}$`
  - `organizationName` string, required — 상호명
  - `representativeName` string, required — 대표자명

## Response `200`

- object
  - `supplierKey` string, required — 공급자(발행자) 식별 키
  - `identificationNumber` string, required — 하이픈(-) 없는 10자리 숫자. 패턴: `^\d{10}$`
  - `taxRegistrationId` string — 4자리 숫자, `0000` 제외. 패턴: `^(?!0{4})\d{4}$`
  - `organizationName` string, required — 상호명
  - `representativeName` string, required — 대표자명
  - `certificate` object
    - `issuedAt` string, required — 인증서 발행일시 (ISO 8601)
    - `expiresAt` string, required — 인증서 만료일시 (ISO 8601)

## Other responses

- `400` — 잘못된 요청

---

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