The deleteCustomListField() method deletes a single custom list field from the VR mailing custom list fields. The custom list field’s name must be provided so that the field to delete can be identified.
Input
[vrtypens:deleteCustomListFieldArgs]
session_id [xsd:string] (required)
Your API session id.
field_name [xsd:string] (required)
The field name to delete
Output
[xsd:boolean]
Examples
Perl
$vrapi->deleteCustomListField( {
session_id => $sid,
field_name => $field_name
},
} );
PHP
$vrapi->deleteCustomListField( array(
'session_id' => $sid,
'field_name' => $field_name
) );
Ruby
vr.deleteCustomListField({
'session_id' => sid,
'field_name' => field_name
})
