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" }'
반환된 결과는 다음과 유사할 것입니다.
{
"items": [
{
"sessionId": "ec4dfff9-d280-42c2-bff4-03d154924de9",
"procedure": {
"id": "2f0560f0-d5e9-11eb-9796-856502905bf2",
"title": "****",
"versionId": "a63e70d0150f3b2ba1cf9e81",
"versionName": "8.0",
"startTime": "2024-01-12T03:35:19.425Z",
"latestEventTimestamp": "2024-01-12T03:39:19.894Z",
"endTime": "2024-01-12T03:39:19.894Z",
"status": "incomplete",
"progress": "completed",
"feedback": "incomplete",
"serialNumber": "1234",
"requiresSerialNumber": true
},
"user": {
"id": "7d496296-6a29-4f88-b9ca-d1f07e1c7e93",
"first_name": "****",
"last_name": "****",
"email": "****",
"role": "****"
}
}
],
"granularity": "procedure",
"fullCount": "1"
}
* 
procedure 아래의 status 속성은 더 이상 사용되지 않지만 여전히 반환됩니다.