Skip to content

Latest commit

 

History

History
68 lines (49 loc) · 1.14 KB

File metadata and controls

68 lines (49 loc) · 1.14 KB

Get AVR Profile

Gets the AVR profile for a physician.

GET {baseUrl}/v1/avr/{fid}

URI Parameters

Name In Required Type Description
baseUrl path True string The API URL.
fid path True string FID of the physician.

Responses

Name Type Description
200 OK AvrProfile Success
400 Bad Request FID is invalid.
401 Unauthorized Unauthorized.
404 Not Found Physician not found.

Security

Required scopes

  • med.avr_read

Examples

Get AVR


Get AVR

Sample Request

GET {baseUrl}/v1/avr/999999915

Sample Response

Status code: 200

Note: Output is elided. Refer to AVR Profile for a complete example.

{
   "fid": "999999915",
   "reportDateUtc": "2026-06-16T12:00:00Z",
   "identity": {
      "birthDate": "1978-08-08",
      "npi": null
   },
   "names": {
      "legalName": {
          "firstName": "Philip",
          "middleName": "James",
          "lastName": "Testman"          
      },
      "alternateNames": []
   }   
}