curl --request PATCH \
--url https://api.example.com/api/v1/auth/update-profile \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"FirstName": "<string>",
"LastName": "<string>",
"PhoneNumber": "<string>",
"ProfilePicture": "<string>",
"ReferralSource": "<string>"
}
'