Meta data

Add, edit, delete meta data to the patient.

Warning

All applications can access the added data, be carefull what you store as meta data.

Get patient meta data

The WieBenIk method returns patient meta data, you can also retrieve custom meta data:

Request

{
   "Name": "{{name}}",
   "Key": "{{key}}",
   "Target": "{{target}}",
   "Session": "{{session}}",
   "Method": "GetMeta",
   "naam": "AgreeTermsAndConditions"
}

Parameters

  • name: Name of the meta data

Response

{
   "waarde": "",
   "ReturnValue": {
       "ResponseCode": 200,
       "ResponseText": "OK",
       "Melding": "OK",
       "Gelukt": true
   }
}

Store patient meta data

The WieBenIk method returns patient meta data, you can also add custom meta data to a patient:

Request

{
   "Name": "{{name}}",
   "Key": "{{key}}",
   "Target": "{{target}}",
   "Session": "{{session}}",
   "Method": "StoreMeta",
   "naam": "AgreeTermsAndConditions",
   "waarde": "maybe"
}

Parameters

  • name: Name of the meta data

  • waarde: Value to store

Response

{
   "ReturnValue": {
       "ResponseCode": 200,
       "ResponseText": "OK",
       "Melding": "OK",
       "Gelukt": true
   }
}

Delete patient meta data

Delete a patient meta data value by the name of the meta value.

Request

{
   "Name": "{{name}}",
   "Key": "{{key}}",
   "Target": "{{target}}",
   "Session": "{{session}}",
   "Method": "DelMeta",
   "naam": "AgreeTermsAndConditions"
}

Parameters

  • name: Name of the meta data

Response

{
    "ReturnValue": {
        "ResponseCode": 200,
        "ResponseText": "OK",
        "Melding": "OK",
        "Gelukt": true
    }
}

Last update: 13-01-2025 14:43