메인 콘텐츠로 건너뛰기
GET
/
v1
/
customers
/
{customerKey}
고객 조회
curl --request GET \
  --url https://xapi.bolta.io/v1/customers/{customerKey} \
  --header 'Authorization: Basic <encoded-value>'
{
  "customerKey": "<string>",
  "identificationNumber": "<string>",
  "organizationName": "<string>",
  "representativeName": "<string>",
  "taxRegistrationId": "<string>",
  "certificate": {
    "issuedAt": "<string>",
    "expiresAt": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.bolta.io/llms.txt

Use this file to discover all available pages before exploring further.

인증

Authorization
string
header
필수

API 키를 Base64 인코딩하여 전달합니다. Username에 API 키를 입력하고 Password는 비워두세요.

경로 매개변수

customerKey
string
필수

고객 식별 키

응답

200 - application/json
customerKey
string
필수

고객 식별 키

identificationNumber
string
필수

사업자등록번호

Pattern: ^\d{3}\d{2}\d{5}$
예시:

"1234567890"

organizationName
string
필수

상호명

Required string length: 1 - 100
representativeName
string
필수

대표자명

Required string length: 1 - 50
taxRegistrationId
string

종사업장번호

Required string length: 4
Pattern: ^(?!0{4})\d{4}$
예시:

"0001"

"0002"

certificate
object