Get a Provider by its external ID (i.e. the ID in your system).
Provider
curl --request GET \ --url https://api.decodahealth.com/v1/provider/get_by_external_id/{external_id} \ --header 'API-KEY: <api-key>' \ --header 'TENANT: <tenant>'
{ "address": "<string>", "addressLineTwo": "<string>", "addressValid": true, "city": "<string>", "country": "<string>", "createdDate": "2023-11-07T05:31:56Z", "email": "<string>", "externalUserId": "<string>", "firstName": "<string>", "id": "<string>", "lastName": "<string>", "meta": {}, "phoneNumber": "<string>", "roles": [ { "name": "<string>" } ], "state": "<string>", "type": "<string>", "zipCode": "<string>" }
The tenant you are making this request on behalf of
Your api key
Successful Response
The response is of type object.
object