커스텀 오브젝트 데이터 조회
Last updated
Was this helpful?
Was this helpful?
GET /v2/custom-object?customObjectDefinitionName=커스텀%20오브젝트%201GET /v2/custom-object?customObjectDefinitionName=커스텀%20오브젝트%201&cursor=<nextCursor>{
"success": true,
"data": {
"customObjectList": [
{
"id": "<customObjectId>",
"customObjectDefinitionId": "<customObjectDefinitionId>",
"이름": "샘플 데이터",
"담당자": {
"id": "<userId>",
"name": "홍길동"
},
"파이프라인": {
"id": "<pipelineId>",
"name": "기본 파이프라인"
},
"파이프라인 단계": {
"id": "<pipelineStageId>",
"name": "진행 중"
}
}
],
"nextCursor": "<nextCursor>"
}
}{
"success": true,
"data": {
"customObjectList": [],
"nextCursor": null
}
}{
"success": false,
"message": "에러 메시지"
}