Sha256: 0b311040e47f9fee1bd1d4f19f21d82647c44884e081a31639b69eb31c596cc1
Contents?: true
Size: 363 Bytes
Versions: 17
Compression:
Stored size: 363 Bytes
Contents
# Fields ## Get subscriber fields of account ```ruby client.fields ``` ## Create new custom field in account ```ruby options = { title: 'Title', type: 'TEXT' } client.create_field(options) ``` ## Update custom field in account ```ruby client.update_field(id, title: 'New title') ``` ## Remove custom field from account ```ruby client.delete_field(id) ```
Version data entries
17 entries across 17 versions & 1 rubygems