# Fields

Fields are custom profile keys you store on subscribers. Define the field key once, then send values through subscriber imports, events, forms, or integrations.

## Available Endpoints


## The Field Model


  
    The field model is a named key for storing a value on a subscriber, similar to 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.

  
  
    
  


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

    
      - **data** (`array`): 
        Field records in your account.
      
      - **data[].name** (`string`): 
        Field key.
      
    
  
  
    
  


---

## 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.
      
    

  
  
    
  


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

    
      - **data.name** (`string`): 
        Field key that was created.