application/json
1import requests23# Get One Report (GET /verification-requests/:verification_request_id/reports/:verification_report_id)4response = requests.get(5 "https://api.truework.com/verification-requests/AAAAAAAAQnIAAYd5YHFVOm8PNX2ecFbEjqV__upOKUE8YE_IK2GwSQTP/reports/AAAAAAAAAKsAAYJIcQvm1nwU0xBbfC1Yh4qyqjvLhwt1B9gRmTCHCyW6?fields=id%2Cstatus",6 headers={7 "Authorization": "Bearer ",8 "Accept": "application/json"9 },10)1112print(response.json())