Get 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
GET /wolfconnect/members/v1/{memberId}/in-out-status

Gets the in/out status (displayed in the top-left corner of WOLFconnect) and 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.

Responses

  • 200 application/json

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

    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.

GET /wolfconnect/members/v1/{memberId}/in-out-status
curl \
 --request GET 'https://api.globalwolfweb.com/wolfconnect/members/v1/{memberId}/in-out-status' \
 --header "Authorization: $API_KEY"
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"
}