cURL
curl --request PATCH \ --url https://api.flowxi.app/api/v1/me \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "first_name": "Jafette", "last_name": "Fandjinou", "birth_date": "1999-01-01", "country": "BJ", "nationality": "BEN", "phone_number": "+22900000000" } '
{ "code": "ME_UPDATED", "message": "Profil mis à jour.", "data": { "id": 17, "first_name": "Jafette", "last_name": "Fandjinou", "birth_date": "1999-01-01", "country": "BJ", "nationality": "BEN", "phone_number": "+22900000000", "updated_at": "2026-01-09T17:11:56.000000Z" } }
Updates basic profile fields. country and nationality are normalized to uppercase.
country
nationality
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Optional locale override (fallback is fr if missing/invalid).
"fr"
YYYY-MM-DD
ISO 3166-1 alpha-2, normalized uppercase.
ISO 3166-1 alpha-3, normalized uppercase.
Updated
"OK"
Show child attributes