# Get all fields

# HTTP method: GET

https://api.sender.net/v2/fields

Returns a list of all custom fields in your account.

Code snippets

Response example

{
  "data": {
    "id": null,
    "title": "Phone number",
    "account_id": null,
    "user_id": null,
    "created": null,
    "modified": null,
    "type": "text",
    "show": null,
    "field_name": "{$phone}",
    "position": null,
    "default": true
  },
  "links": {
    "first": "https://api.sender.net/v2/fields?page=1",
    "last": "https://api.sender.net/v2/fields?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "links": [
      {
        "url": null,
        "label": "pagination.previous",
        "active": false
      },
      {
        "url": "https://api.sender.net/v2/fields?page=1",
        "label": 1,
        "active": true
      },
      {
        "url": null,
        "label": "pagination.next",
        "active": false
      }
    ],
    "path": "https://api.sender.net/v2/fields",
    "per_page": 10,
    "to": 8,
    "total": 8
  }
}