Get a password reset link

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://api-docs.kitsu.cloud/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Kitsu API MCP server": {
    "url": "https://api-docs.kitsu.cloud/mcp"
  }
}

Close
POST /actions/persons/{person_id}/reset-password-link

Return the password reset link for the given person. It is the same link as the one embedded in the password recovery email, so an admin can share it manually (for instance when email delivery is not configured). An already pending reset token is reused so a link shared earlier stays valid; a new one is generated otherwise.

Path parameters

  • person_id string(uuid) Required

    Person unique identifier

Responses

  • 200 application/json

    Password reset link generated

    Hide response attribute Show response attribute object
    • reset_password_link string

      Link to follow to choose a new password

  • 400

    User is a protected account or another admin who already has a password

POST /actions/persons/{person_id}/reset-password-link
curl \
 --request POST 'http://api.example.com/actions/persons/a24a6ea4-ce75-4665-a070-57453082c25/reset-password-link' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "reset_password_link": "string"
}