업로드된 파트 목록 조회¶
POST /api/v1/rum_sourcemap/part_list
개요¶
sourcemap 압축 파일 업로드(파트 업로드) 작업의 네 번째 단계인 선택적 작업입니다. 업로드된 파트 목록을 조회합니다. 일반적으로 중단점 재개 또는 파트 확인에 사용됩니다. 자세한 내용은 다음을 참조하세요: SourceMap 파트 업로드 관련 인터페이스 사용 설명
Body 요청 매개변수¶
| 매개변수명 | 유형 | 필수 | 설명 |
|---|---|---|---|
| uploadId | string | Y | 파트 업로드 이벤트 ID Null 허용: False |
매개변수 추가 설명¶
요청 예시¶
curl 'https://openapi.guance.com/api/v1/rum_sourcemap/part_list' \
-H 'Content-Type: application/json' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--data-raw $'{\n "uploadId": "65ef45944fac157005cb73de48e81f161Lfv5UOs"\n}' \
--compressed
응답¶
{
"code": 200,
"content": {
"chunkIndexs": [
1
],
"declaration": {
"b": [
"asfawfgajfasfafgafwba",
"asfgahjfaf"
],
"business": "aaa",
"organization": "6540c09e4243b300077a9675"
},
"uploadId": "65ef45944fac157005cb73de48e81f161Lfv5UOs"
},
"errorCode": "",
"message": "",
"success": true,
"traceId": "TRACE-8A543B50-9DFF-4C29-9D01-69892F5372BD"
}