비즈니스 정보 변경 API

플랫폼 서비스에서 생성한 비즈니스 정보를 수정할 수 있도록 API를 제공합니다.

POST kit-api/v1/business/profile

Method: POST Endpoint: kit-api/v1/business/profile

Example

...kit-api/v1/business/profile
{
  "input": {
    "profile": {
      "name": "홍길동 컴퍼니",
      "registrationNumber": "123-12-12345",
      "ceo": "홍길동",
      "address": "서울특별시 강남구"
    }
  }
}

Request Body

KeyTypeDescriptionRequired

input.profile.name

string

비즈니스 이름

yes

input.profile.registrationNumber

string

사업자등록번호

no

input.profile.ceo

string

대표자 이름

no

input.profile.address

string

회사 주소

no

Response

Success Response

{
  "ok": true,
  "data": {
    "profile": {
      "name": "홍길동 컴퍼니",
      "registrationNumber": "123-12-12345",
      "ceo": "홍길동",
      "address": "서울특별시 강남구"
    }
  }
}

Error Response

{
  "ok": false,
  "message": "error message",
  "errorCode": "ERROR_CODE"
}

Last updated