Just figured it out. Had to convert 'None' to None. json.dumps will automatically convert None to null. Using Python: if new_dict['type'] == 'access': new_dict['voiceVlan'] = None if new_dict['voiceVlan'] == 'None' else new_dict['voiceVlan']
... View more