고객 정보 변경 API

플랫폼 서비스에서 특정 비즈니스의 고객 정보를 변경할 수 있는 API를 제공합니다.

PATCH kit-api/v1/customers/[customerId]

Method: PATCH Endpoint: kit-api/v1/customers/[customerId]

Example

...kit-api/v1/customers/1
{
  "input": {
    "title": "김철수 매니저",
    "customKey": "B5-k159402"
  }
}

Request Path 파라미터

Request Body 파라미터

Response

{
  "ok": true,
  "data": {
    "id": 1,
    "title": "김철수 매니저",
    "customKey": "B5-k159402"
  }
}
{
  "ok": false, // api 실패
  "message": "error message", // Error가 존재하면 message(string)로 전달
  "errorCode": "ERROR_CODE"
}

Error Codes

Last updated