# Fields

Fields are unique data points you collect about a subscriber, forming the backbone of personalized data in Bento. These can range from simple information like their first name to more complex details such as total purchases, preferred currency, or even interests and application behavior patterns. Each field name remains consistent for every subscriber, while the values vary, allowing for rich individual profiles. 

## Available Endpoints


| Method                                                      | Endpoint                                                          | Name                                       |
|-------------------------------------------------------------|-------------------------------------------------------------------|--------------------------------------------|
|     |  | [Create Fields](/docs/fields#create-field) |
|  |  | [Get Fields](/docs/fields#get-fields)      |


## The Field Model


  
    The field model is a simple named `key` `value` pair, think of it as a form field.
  
  
    ### Properties

    
      - **name** (`string`): 
        The name of the Field
      
    
  


---

## Get Fields {{ tag: 'GET', label: '/v1/fetch/fields' }}


  
    Returns a list of fields in your account.

  
  
    
  

<br/><br/>

  
    ### Response
    Returns a list of Fields in your account.

  
  
    
  


---

## Create Field {{ tag: 'POST', label: '/v1/fetch/fields' }}


  
    Creates a custom field in your account.

    
> Only a single field can be created at a time.


    ### Required Attributes
    
      - **key** (`string`): 
        The name of the field to create.
      
    

  
  
    
  

<br/><br/>

  
    ### Response
    Returns the details of the created Field.