cURL
curl --request POST \ --url https://api.soharhealth.com/v2/verifications \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "patient": { "firstName": "John", "lastName": "Doe", "dateOfBirth": "09/20/2023", "state": "CA", "memberId": "00000000" }, "payerId": "62308", "placeOfServiceCode": "02", "specialtyCode": "PSY", "id": "123456", "subscriber": { "firstName": "<string>", "lastName": "<string>", "dateOfBirth": "09/20/2023" } }'
{ "verificationId": "f47ac10b-58cc-4372-a567-0e02b2c3d479", "id": "123456" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A verification ID
The response is of type object.
object