Use the API to update one or more fields for a User.
curl -X POST http://app.cloudmattr.com/api/v1/users \
-H "Accept: application/json" -H "Content-Type: application/json" \
-H "Authorization: YOUR_API_KEY"
JSON Body
{
"id": "asdf1234",
"first_name": "Michael",
"last_name": "Scott",
"email": "mscott@dundermifflin.com",
"avatar_url": "https://mybucket.s3.amazonaws.com/my-folder/a-file.png",
"custom_fields": {
"title": "Regional Manager"
,
"subscription_name": "Pro Plan"
}
}