Set the In/Out Status of a Member

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.lwolf.com/doc/wolfconnect-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "WolfConnect API MCP server": {
    "url": "https://apidocs.lwolf.com/doc/wolfconnect-api/mcp"
  }
}

Close
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).

Path parameters

  • memberId string Required

    The Lone Wolf Id of the member.

application/json

Body Required

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.

    Maximum length is 500.

  • DetailedNotes string

    More detailed notes about why the member is out.

    Maximum length is 5000.

Responses

  • 200 application/json

    The updated MemberInOutStatus object.

    Hide response attributes Show response attributes object
    • Id string

      The Lone Wolf Id of the member.

      Maximum length is 50.

    • 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.

      Maximum length is 500.

    • DetailedNotes string

      More detailed notes about why the member is out.

      Maximum length is 5000.

  • 400 application/json

    Error Code 1001: The memberId parameter is invalid. Error Code 1006: Validation failed.

    Hide response attributes Show response attributes 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 application/json

    The member could not be found.

    Hide response attributes Show response attributes 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.

PUT /wolfconnect/members/v1/{memberId}/in-out-status
curl \
 --request PUT 'https://api-sb.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"
}