pushAdminMessage COM module is a data
exchange system for treatment messages
exchange system for treatment messages
API browser of pushAdminMessage500 COM module
|
Sets the primary parameters and structured address of the patient.
The address is defined via an IAddress interface pointer and the address data must be defined prior to call this method. |
|||
| [POST] | /baseURL/IPushAdminMessageRequest/SetPatient | ||
| [JSON input data] | pIPushAdminMessageRequest: eSexType: eGenderType: dBirthdate: bstrSSN: pIAddress: |
longValue, //interface address longValue, longValue, variantDateValue | "stringISODateValue", "utf8StringValue", longValue |
|
| [JSON result data] | pbStatus: | booleanValue |
|
| [HTTP result status] | 200 | Return status 200 signals a successful method call | |
| 204 | Return status 204 (noContent) signals that the end of an iteration is reached | ||
| >= 400 | Return status >= 400 signals an unsuccessful function call. The returned JSON{errorCode: code, errorText:"text"} supplies the error message the same as GetAbortInfo() would do. | ||
| HRESULT SetPatient( | SexType
GenderType DATE BSTR IAddress VARIANT_BOOL |
eSexType,
eGenderType, dBirthdate, bstrSSN, *pIAddress, *pbStatus); |
|
| [C/C++ return value] | S_OK | This value is returned if the function call was successful. | |
| S_FALSE | This value is returned if the end of an iteration is reached | ||
| E_name | This value is returned if the function call was unsuccessful and an error exception was generated. Note that if you are using SmartPointers an exception is thrown under these conditions. | ||
| [in] SexType | eSexType | The patient's medical sex (pre-dominantly induced by the actual hormonal balance of the body) encoded by a terminal set of tokens. | |
| [in] GenderType | eGenderType | The patient's social gender encoded by a terminal set of tokens | |
| [in] DATE | dBirthdate | The patient's birthdate. | |
| [in] BSTR | bstrSSN | Defines the required patient's social security number (SSN) whereupon 3 distinguished types are allowed:
If for any reasons the SSN of the patient is unknown, than the unknownSSN = 7569999999991 must be defined to satisfy the schema validity! |
|
| [in] IAddress | *pIAddress | Pointer to an IAddress interface instance that holds the structured address parts. | |
| [out,retval] VARIANT_BOOL | *pbStatus | Return status of the method. If pbStatus is VARIANT_FALSE then an error occurred and GetAbortInfo should be called to retrieve the error string. | |