Vuforia API를 통해 데이터 액세스 > Vuforia API > 절차 실행 데이터 액세스 > API 호출 > 특정 일련 번호에 대해 실패 없이 완료 및 제출된 모든 세션 반환
  
특정 일련 번호에 대해 실패 없이 완료 및 제출된 모든 세션 반환
실패가 포함되지 않은 완료 및 제출된 모든 세션을 반환하려면 다음 명령을 실행합니다.
curl -X 'POST' 'https://vuforia.ptc.com/customer-events/<orgid>/report?' \
-H 'accept: application/json' \
-H 'x-requested-with: fetch' \
-H 'x-api-key: <x-api-key secret>' \
-H 'Content-Type: application/json' \
-d '{ "serialNumber": <serial#>, "granularity": "procedure", "feedback": ["na", "complete"], "failures": "exclude" }'
반환된 결과는 다음과 유사할 것입니다.
{
"items": [
{
"sessionId": "f145cadf-ed5d-4db8-8f71-b18f03a66ed4",
"procedure": {
"id": "44ff1de0-a9ef-11eb-9403-25f934520fd1",
"title": "****",
"versionId": "32a0c0c4c5f84279a31fe7d43a1c20e6",
"versionName": "10.0",
"startTime": "2022-04-12T19:38:28.670Z",
"latestEventTimestamp": "2022-04-12T19:39:15.634Z",
"endTime": "2022-04-12T19:39:15.634Z",
"status": "complete",
"progress": "completed",
"feedback": "complete",
"serialNumber": "129GYT",
"requiresSerialNumber": true
},
"user": {
"id": "e65924f8-fdbd-4fb3-b911-83296387059a"
}
}
],
"granularity": "procedure",
"fullCount": "1"
}