POST api/PatientCheckin/SaveActivePatientCheckin
Request Information
URI Parameters
None.
Body Parameters
ActivatePatientCheckinDTOName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
PatientCheckinId | integer |
None. |
|
IsActivated | boolean |
None. |
|
IsCompleted | boolean |
None. |
|
Note | string |
String length: inclusive between 0 and 300 |
|
CaseNo | integer |
None. |
|
ValidFlag | boolean |
None. |
|
DateCreated | date |
None. |
|
DateUpdated | date |
None. |
|
UserIDCreated | integer |
None. |
|
UserIDUpdated | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "PatientCheckinId": 2, "IsActivated": true, "IsCompleted": true, "Note": "sample string 3", "CaseNo": 1, "ValidFlag": true, "DateCreated": "2025-04-04T05:13:05.5260474-07:00", "DateUpdated": "2025-04-04T05:13:05.5260474-07:00", "UserIDCreated": 7, "UserIDUpdated": 8 }
application/xml, text/xml
Sample:
<ActivatePatientCheckinDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO"> <DateCreated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Model">2025-04-04T05:13:05.5260474-07:00</DateCreated> <DateUpdated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Model">2025-04-04T05:13:05.5260474-07:00</DateUpdated> <UserIDCreated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Model">7</UserIDCreated> <UserIDUpdated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Model">8</UserIDUpdated> <ValidFlag xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Model">true</ValidFlag> <CaseNo>1</CaseNo> <Id>1</Id> <IsActivated>true</IsActivated> <IsCompleted>true</IsCompleted> <Note>sample string 3</Note> <PatientCheckinId>2</PatientCheckinId> </ActivatePatientCheckinDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AsapResponseOfActivatePatientCheckinDTOName | Description | Type | Additional information |
---|---|---|---|
isSuccess | boolean |
None. |
|
message | string |
None. |
|
jsonObj | ActivatePatientCheckinDTO |
None. |
|
totalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "isSuccess": true, "message": "sample string 2", "jsonObj": { "Id": 1, "PatientCheckinId": 2, "IsActivated": true, "IsCompleted": true, "Note": "sample string 3", "CaseNo": 1, "ValidFlag": true, "DateCreated": "2025-04-04T05:13:05.5260474-07:00", "DateUpdated": "2025-04-04T05:13:05.5260474-07:00", "UserIDCreated": 7, "UserIDUpdated": 8 }, "totalCount": 3 }
application/xml, text/xml
Sample:
<AsapResponseOfActivatePatientCheckinDTO9DQd0Pqc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common"> <isSuccess>true</isSuccess> <jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO"> <DateCreated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Model">2025-04-04T05:13:05.5260474-07:00</DateCreated> <DateUpdated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Model">2025-04-04T05:13:05.5260474-07:00</DateUpdated> <UserIDCreated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Model">7</UserIDCreated> <UserIDUpdated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Model">8</UserIDUpdated> <ValidFlag xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Model">true</ValidFlag> <d2p1:CaseNo>1</d2p1:CaseNo> <d2p1:Id>1</d2p1:Id> <d2p1:IsActivated>true</d2p1:IsActivated> <d2p1:IsCompleted>true</d2p1:IsCompleted> <d2p1:Note>sample string 3</d2p1:Note> <d2p1:PatientCheckinId>2</d2p1:PatientCheckinId> </jsonObj> <message>sample string 2</message> <totalCount>3</totalCount> </AsapResponseOfActivatePatientCheckinDTO9DQd0Pqc>