Delete 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
DELETE /wolfconnect/members/v1/{memberId}/profile-image

Deletes the profile image for the member.

NOTE: This resource returns OK even if the member does not have a profile image.

Path parameters

  • memberId string Required

    The Lone Wolf Id of the member.

Responses

  • 200

    The profile image was deleted. No response content.

  • 404 application/json

    Error Code 1001: The memberId parameter is invalid. Error Code 404: 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.

DELETE /wolfconnect/members/v1/{memberId}/profile-image
curl \
 --request DELETE 'https://api.globalwolfweb.com/wolfconnect/members/v1/{memberId}/profile-image' \
 --header "Authorization: $API_KEY"
Response examples (404)
{
  "Code": 42,
  "Message": "string",
  "Details": "string"
}