POST api/Demographics/language/get
Returns the language of the patient from InteliChart demographics.
Request Information
URI Parameters
None.
Body Parameters
BaseRequestName | Description | Type | Additional information |
---|---|---|---|
PersonUid |
Encryped passcode for the authenticated user. |
string |
Required |
StartDate |
Start date of the request. A time component is not used when passing the start date. |
date |
[Optional] |
EndDate |
End date of the request. A time component is not used when passing the end date. |
date |
[Optional] |
Request Formats
application/json, text/json
Sample:
{ "PersonUid": "sample string 1", "StartDate": "2024-10-07T10:30:23.5658557-04:00", "EndDate": "2024-10-07T10:30:23.5658557-04:00" }
Response Information
Resource Description
LanguageResponseName | Description | Type | Additional information |
---|---|---|---|
Name |
text name of the language. |
string | |
Iso6392Code |
ISO 639-2 code of the named language. |
string | |
ErrorMessage |
If the success property is false, the ErrorMessage property will contain error text, otherwise it will be null. |
string | |
ErrorType |
Text of the type of error that has occured (See the Error Handling section for more information). |
string | |
Success |
Represents the success of the call. |
boolean |
Response Formats
application/json, text/json
Sample:
{ "Name": "sample string 1", "Iso6392Code": "sample string 2", "ErrorMessage": "sample string 3", "ErrorType": "sample string 4", "Success": true }