I created a User like so:
user = User(
email="[email protected]", user_id="i-1224242",
companies=[{'company_id': 6, 'name': 'Intercom'}])
and then called user.save(). The value for companies was not being sent in the request. If I created it as follows:
user = User.create(
email="[email protected]", user_id="i-1224242",
companies=[{'company_id': 6, 'name': 'Intercom'}])
then it behaved as expected.
I created a
Userlike so:and then called
user.save(). The value forcompanieswas not being sent in the request. If I created it as follows:then it behaved as expected.