Get the In/Out Status of All the Members

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/in-out-status

Returns the in/out statuses and the notes and detailed notes for all active members for a given client code.

Responses

  • 200 application/json

    A collection of MemberInOutStatus objects.

    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.

GET /wolfconnect/members/v1/in-out-status
curl \
 --request GET 'https://api-sb.globalwolfweb.com/wolfconnect/members/v1/in-out-status' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "Id": "string",
    "In": true,
    "Notes": "string",
    "DetailedNotes": "string"
  }
]