# Set the In/Out Status of a Member **PUT /wolfconnect/members/v1/{memberId}/in-out-status** 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). ## Servers - Production: https://api.globalwolfweb.com (Production) - Test: https://api-sb.globalwolfweb.com (Test) ## Authentication methods - Lone wolf token ## Parameters ### Path parameters - **memberId** (string) The Lone Wolf Id of the member. ### Body: application/json (object) A MemberInOutStatus object. - **In** (boolean) True if the member is marked in. False otherwise. Required when updating the In/Out status of a member. - **Notes** (string) Quick notes about why the member is out. - **DetailedNotes** (string) More detailed notes about why the member is out. ## Responses ### 200 The updated MemberInOutStatus object. #### Body: application/json (object) - **Id** (string) The Lone Wolf Id of the member. - **In** (boolean) True if the member is marked in. False otherwise. Required when updating the In/Out status of a member. - **Notes** (string) Quick notes about why the member is out. - **DetailedNotes** (string) More detailed notes about why the member is out. ### 400 Error Code 1001: The memberId parameter is invalid. Error Code 1006: Validation failed. #### Body: application/json (object) - **Code** (integer) The Lone Wolf Error Code. See the Error Codes section of the introduction. - **Message** (string) The message that corresponds to the Code value. - **Details** (string) The exact problem that occurred to give this error response. ### 404 The member could not be found. #### Body: application/json (object) - **Code** (integer) The Lone Wolf Error Code. See the Error Codes section of the introduction. - **Message** (string) The message that corresponds to the Code value. - **Details** (string) The exact problem that occurred to give this error response. [Powered by Bump.sh](https://bump.sh)