POST api/members/checkin/{cfid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| cfid | integer |
Required |
Body Parameters
MemberCheckInOutRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Notes | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Notes": "sample string 1"
}
application/xml, text/xml
Sample:
<MemberCheckInOutRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Web.Api.Models"> <Notes>sample string 1</Notes> </MemberCheckInOutRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MemberCheckInOutResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| FolderId | integer |
None. |
|
| FolderProductId | integer |
None. |
|
| TreatmentEntryId | integer |
None. |
|
| ActivityDate | date |
None. |
|
| Status | CFCheckInStatus |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"FolderId": 3,
"FolderProductId": 4,
"TreatmentEntryId": 5,
"ActivityDate": "2026-08-18T04:41:07.8546246+03:00",
"Status": 0
}
application/xml, text/xml
Sample:
<MemberCheckInOutResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Web.Api.Models"> <ActivityDate>2026-08-18T04:41:07.8546246+03:00</ActivityDate> <FolderId>3</FolderId> <FolderProductId>4</FolderProductId> <Message>sample string 2</Message> <Status>NotCheckedIn</Status> <Success>true</Success> <TreatmentEntryId>5</TreatmentEntryId> </MemberCheckInOutResult>