Sets the in/out status (displayed in the top-left corner of WOLFconnect) and updates the notes and detailed notes for the member (if enabled, displayed on the In/Out popup window that appears when first logging in).
PUT
/wolfconnect/members/v1/{memberId}/in-out-status
curl \
--request PUT 'https://api.globalwolfweb.com/wolfconnect/members/v1/{memberId}/in-out-status' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"In":true,"Notes":"string","DetailedNotes":"string"}'
Request examples
{
"In": true,
"Notes": "string",
"DetailedNotes": "string"
}
Response examples (200)
{
"Id": "string",
"In": true,
"Notes": "string",
"DetailedNotes": "string"
}
Response examples (400)
{
"Code": 42,
"Message": "string",
"Details": "string"
}
Response examples (404)
{
"Code": 42,
"Message": "string",
"Details": "string"
}