Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Alejandrin08/Hackathon-SPEI/llms.txt
Use this file to discover all available pages before exploring further.
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /api/profile/me | Retrieve the authenticated user’s profile |
PUT | /api/profile/me | Update the authenticated user’s profile |
GET /api/profile/me
Returns profile data for the currently authenticated user.Response
200 OK
UUID of the authenticated user.
Display name for the user (set during registration as
userName).User’s registered email address.
User’s phone number, if set.
Preferred UI language, e.g.,
"es-MX".Whether the account is in demo/sandbox mode.
Example
PUT /api/profile/me
Updates the profile of the currently authenticated user. Only provided fields are updated.Request body
Updated email address. Must be a valid email format.
Updated phone number. Must be a valid phone format.
Updated preferred UI language, e.g.,
"es-MX" or "en-US".Response
200 OK
Returns the updated user profile with the same structure asGET /api/profile/me.
Error responses
| Status | Description |
|---|---|
400 Bad Request | Validation error — invalid email or phone format. |
401 Unauthorized | Invalid or expired token. |
