Generate a Firebase password-reset link for the user and email it to them.The user id goes in the path — the only registered route is POST /v2/users/reset-password/{id}. There is no body-based variant, and the request body is ignored entirely.gigstack Connect: Reset passwords for other teams' users using the team parameter.
Request
Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Path Params
Query Params
Responses
🟢200OK
application/json
Reset email sent. Raw legacy shape — { "message": "User password reset successfully" }, with no success, data or timestamp.
Bodyapplication/json
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request POST 'https://api.gigstack.io/v2/users/reset-password/user_1234567890?team=undefined' \
--header'Authorization: <api-key>'