curl --location --request PATCH 'https://staging.api.joindapayments.com/accounts/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "user1",
"email": "dev+user1@joindapayments.com",
"password": "secure-password",
"is_active": true,
"is_admin": true
}'{
"status": "success",
"message": "Account updated successfully",
"data": {
"id": "1f126d9a-e504-4c82-b1ed-bee770be6294",
"username": "user1",
"email": "dev+user1@joindapayments.com",
"is_active": true,
"is_admin": true,
"created_at": "2025-12-17T12:49:59.803444Z",
"updated_at": "2025-12-17T13:44:39.814227Z"
}
}