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

Version Path
mailerlite-1.16.1 examples/fields.md
mailerlite-1.16.0 examples/fields.md
mailerlite-1.15.0 examples/fields.md
mailerlite-1.14.0 examples/fields.md
mailerlite-1.13.1 examples/fields.md
mailerlite-1.13.0 examples/fields.md
mailerlite-1.12.0 examples/fields.md
mailerlite-1.11.0 examples/fields.md
mailerlite-1.10.0 examples/fields.md
mailerlite-1.9.0 examples/fields.md
mailerlite-1.8.0 examples/fields.md
mailerlite-1.7.0 examples/fields.md
mailerlite-1.6.1 examples/fields.md
mailerlite-1.6.0 examples/fields.md
mailerlite-1.5.0 examples/fields.md
mailerlite-1.4.0 examples/fields.md
mailerlite-1.3.0 examples/fields.md