리드 수정
POST /v2/lead/<leadId>
딜을 수정합니다.
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Path parameters
Name
Type
Description
leadId
string
수정 할 리드의 Id
Body parameters
Name
Type
Description
name
string
수정할 리드의 이름
peopleId
string
수정할 리드과 연결된 고객의 Id
organizationId
string
수정할 리드과 연결된 회사의 Id
memo
string
리드 수정 시 작성할 메모
fieldList
array
수정할 리드의 데이터필드
Response
{
"success": true,
"data": {
"lead":
{
"id": "<leadId>",
"name": "수정한 리드의 이름",
"updatedAt": "2024-04-08T05:25:26.020Z"
}
}{
"success": false,
"message": "에러 메세지"
}Last updated
Was this helpful?