고객 수정

POST /v2/people/<peopleId>

고객을 수정합니다.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Path parameters

NameTypeDescription

peopleId

string

수정 할 고객의 Id

Body parameters

NameTypeDescription

name

string

수정할 고객의 이름

organizationId

string

수정할 고객과 연결된 회사의 Id

memo

string

고객 수정 시 작성할 메모

fieldList

array

수정할 고객의 데이터필드

Response

{
    "success": true,
    "data": {
        "people":
            {
                "id": "<peopleId>",
                "name": "수정한 고객의 이름",
                "updatedAt": "2024-04-08T05:25:26.020Z"
            }
}

Last updated