Update User
Partially update a user. Only the fields you provide will change.
PATCH/v1/users/{id}
Body parameters
curl -X PATCH https://api.vaultspay.ae/v1/users/usr_01HX71YM6FJ3A8W7T5K6NRB2DN \
-H "Authorization: Bearer sk_test_yourApiKeyHere" \
-H "Content-Type: application/json" \
-d '{ "mobile": "+971551111222" }'200 OK
{
"id": "usr_01HX71YM6FJ3A8W7T5K6NRB2DN",
"object": "user",
"mobile": "+971551111222",
"updated_at": "2026-04-24T14:52:03.182Z",
...
}