Are there any rules of thumb for what constitutes a "valid" Rest API post request? E.g in the following request:
POST sg-richarddemo.demo.sugarcrm.eu/.../Notes
{
 "name": "Test Note 16",
 "parent_id": "6c39e3a2-b234-11e6-876e-02b6c8b587a1",
 "parent_type": "Accounts",
 "note_type_c": "note",
 "assigned_user_id": "1",
 "team_name": {
 "id": "1",
 "name": "Global",
 "primary": "true",
 "selected": "false"
 }
}
which are the fields that are necessary to ensure the Note appears under the specified account in the SugarCRM GUI. Thanks.