SubscriberCustomFieldResponse¶
This variable represents a response to a custom field. It is accessed through the subscriber_custom_field_responses array on the subscriber
Sample code to add the custom field responses to the invoice:
{% for response in subscriber.subscriber_custom_field_responses %}
<tr><th>{{ response.label }}</th><td>{{ response.response }}</td></tr>
{% endfor %}
id
¶
Unique ID for this object.
label
¶
Label of the custom field.
response
¶
Subscriber’s response to the custom field.
integration_id
¶
custom_X id for the custom field.