GET member_services/VisitHistory/{code}
This method will return the list of visits recorded for the specified member. If the specified member is a primary family member, visits for the entire family will be included.
Requires: HTTPS, Basic Auth.
Return Codes:
OK - Request satisfied, data included in body.
Not Found - Member with supplied code could not be found.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| code | Code of the required member |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"MemberCode": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"MemberNumber": 4,
"VisitDate": "2026-04-02T18:27:29.6757962-05:00",
"NodeNumber": 6
},
{
"MemberCode": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"MemberNumber": 4,
"VisitDate": "2026-04-02T18:27:29.6757962-05:00",
"NodeNumber": 6
},
{
"MemberCode": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"MemberNumber": 4,
"VisitDate": "2026-04-02T18:27:29.6757962-05:00",
"NodeNumber": 6
}
]