PUT
    /v1/auth/users/{user_id}/update
  
  curl \
 --request PUT 'https://api.streambird.io/v1/auth/users/{user_id}/update' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"emails":[{"email":"sandbox@streambird.io"}],"last_name":"Smith","first_name":"John","middle_name":"","phone_numbers":[{"phone_number":"+14152222222"}]}'
        Request example
  
  {
  "emails": [
    {
      "email": "sandbox@streambird.io"
    }
  ],
  "last_name": "Smith",
  "first_name": "John",
  "middle_name": "",
  "phone_numbers": [
    {
      "phone_number": "+14152222222"
    }
  ]
}
        Response examples (200)
  
  {
  "user": {
    "totps": [],
    "active": true,
    "emails": [
      {
        "id": "email_26AjWpEcss2YyqFh1san6Wjjs7o",
        "email": "hello@streambird.io",
        "verified": true,
        "created_at": 1646873318,
        "updated_at": 1646957196
      },
      {
        "id": "email_24oXBL3PufzHkH1Jzyjc2EXYeo7",
        "email": "sandbox@streambird.io",
        "verified": false,
        "created_at": 1642703333,
        "updated_at": 1642703333
      }
    ],
    "status": "active",
    "user_id": "user_24wFP9pDa9YiMJLun94iKykoZs2",
    "wallets": [
      {
        "id": "wallet_26AjWu075gRWMnjfPglcdoD2PAQ",
        "verified": true,
        "created_at": 1646873319,
        "is_default": true,
        "updated_at": 1646873319,
        "is_imported": false,
        "wallet_type": "ethereum",
        "is_read_only": false,
        "public_address": "0x863c381a56a58370f435b0100faba94e6462b6d1"
      }
    ],
    "last_name": "",
    "created_at": 1646873318,
    "first_name": "",
    "updated_at": 1646873318,
    "middle_name": "",
    "idp_providers": [
      {
        "id": "idpuser_28SRho5nbD045LGq2btZWXhkdjN",
        "idp_type": "oauth",
        "provider": "google",
        "method_id": "email_26AjWpEcss2YyqFh1san6Wjjs7o",
        "created_at": 1651208121,
        "updated_at": 1651208121,
        "method_type": "email",
        "provider_subject": "100157402424066154830"
      }
    ],
    "phone_numbers": [
      {
        "id": "pn_24oXBLRv6BoHXbNZoTAZkAFlRsy",
        "verified": false,
        "created_at": 1642703333,
        "updated_at": 1642703333,
        "phone_number": "+14152222222"
      }
    ],
    "webauthn_credentials": []
  },
  "emails": [
    {
      "id": "email_24oXBL3PufzHkH1Jzyjc2EXYeo7",
      "email": "sandbox@streambird.io",
      "verified": false,
      "created_at": 1642703333,
      "updated_at": 1642703333
    }
  ],
  "user_id": "user_24wFP9pDa9YiMJLun94iKykoZs2",
  "phone_numbers": [
    {
      "id": "pn_24oXBLRv6BoHXbNZoTAZkAFlRsy",
      "verified": false,
      "created_at": 1642703333,
      "updated_at": 1642703333,
      "phone_number": "+14152222222"
    }
  ]
}