Telephony¶
Methods that can be used for call centre solutions.
Find number¶
Find a patient by his number and open his, for example, medical file with the url that was returned. The Links section can contain multiple “deep links” to sections within Bricks Huisarts for the patient that was found.
Request¶
{
"Name": "{{name}}",
"Key": "{{key}}",
"Target": "{{target}}",
"Method": "ZoekTelefoonnummer",
"nummers": ["0612345679"]
}
Parameters
nummers
: The number that was called.
Response¶
{
"resultaten": [
{
"Nummer": "0624873534",
"Patienten": [
{
"Naam": "Eríc De OPEN testpatiënt-Van de Web 01-01-1965",
"GeboorteDatum": "0001-01-01T00:00:00",
"PatientId": 157376,
"Links": [
{
"URL": "https://example.nl/1234/do/start+consult+157376",
"Caption": "Dossier",
"Text": "Open dossier voor deze patient"
}
]
}
]
}
],
"ReturnValue": {
"ResponseCode": 200,
"ResponseText": "OK",
"Melding": "OK",
"Gelukt": true
}
}
Data
Nummer
: The phonenumber that was used for the searchPatienten
: Patients found with the given phonenumberNaam
: Patient nameGeboorteDatum
: Patient date of birthPatientId
: Patient ID in Bricks HuisartsLinks
: Link options to open patient dataURL
: URL to be calledCaption
: Name of the buttonText
: Tooltip of the button / extra (caption) information
Last update:
03-03-2025 11:26