I am utilizing Constant Contact's REST API endpoint '/contacts/sign_up_form' to add or update a new contact to a list. Here is my request body: {"email_address":"test@example.com","first_name":"","last_name":"","create_source":"Account","street_address":{"kind":"home","city":" ","state":"","postal_code":""},"list_memberships":["some_list_id"],"custom_fields":[{"custom_field_id":"IPADDRESS","value":null},{"custom_field_id":"LOAN _MOUNT","value":20000.0},{"custom_field_id":"LOAN_REASON","value":"Car loan"},{}]} Then why I am not able to view those custom fields on my account for that contact ?Is it necessary to create all custom fields in the account before using them in contact creation? What is the exact process of using custom fields? Or is it necessary to create a 'sign_up_form' with required custom fields before using it?
... View more