Retrieve the Profile Image 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}/profile-image

Retrieves the profile image for the member that was uploaded through the member profile page in WOLFconnect.

This resource supports the If-Modified-Since request header and will return a 304 Not Modified response if the image has not been modified since the time specified.

HEAD is also supported for this resource.

NOTE: The size and width parameters should not be used at the same time.

Path parameters

  • memberId string Required

    The Lone Wolf Id of the member.

Query parameters

  • size string

    The size of the image returned. normal: 150 X 200 (Default), small: 100 X 133, tiny: 70 X 93

    Values are normal, small, or tiny. Default value is normal.

  • width integer

    Specifies a custom width for the returned image. The height will be adjusted to keep the same aspect ratio. The width can only be a number less than or equal to 150 as that is the max width of any stored image.

    Maximum value is 150.

Responses

  • 200 image/*

    An image file.

  • 304

    Not Modified. The image has not been modified since the time specified in the If-Modified-Since request header.

  • 404 application/json

    Error Code 1001: The memberId parameter is invalid. Error Code 404: The member or profile image for 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}/profile-image
curl \
 --request GET 'https://api-sb.globalwolfweb.com/wolfconnect/members/v1/{memberId}/profile-image' \
 --header "Authorization: $API_KEY"
Response examples (404)
{
  "Code": 42,
  "Message": "string",
  "Details": "string"
}