Access Feedback Images and Thumbnails
* 
This API does not accept query string parameters.
To return all feedback images captured during procedure execution in Vuforia Vantage you can use the API documented in Return All Completed and Submitted Sessions for a Given Serial Number Including Step Data with granularity set to step. The image is a relative URL that is returned with the mediaFeedback property for each step (if applicable).
For Use With Service Principals Method (Recommended)
The full-sized image can be accessed using the following GET API:
curl 'https://vuforia.portal.ptc.com/<mediaFeedbackUrl>' -H 'Authorization: Bearer [access_token]'
A thumbnail version of the full-sized image can be accessed using the following GET API:
curl 'https://vuforia.portal.ptc.com/<mediaFeedbackUrl>/.thumbnail' -H 'Authorization: Bearer [access_token]'
For Use With x-api-key Method
* 
This method will be deprecated in a future release. We instead recommend creating and using service principals for authentication. For more information, see Create Service Principals for External API Access.
The full-sized image can be accessed using the following GET API:
curl 'https://vuforia.portal.ptc.com/<mediaFeedbackUrl>' -H 'x-api-key: <x-api-key secret>'
A thumbnail version of the full-sized image can be accessed using the following GET API:
curl 'https://vuforia.portal.ptc.com/<mediaFeedbackUrl>/.thumbnail' -H 'x-api-key: <x-api-key secret>'
Was this helpful?