company custom fields

Create

POST method to create company custom fields.

Parameters

Name Description
account_id required Your account unique identifier to access API.
name required Name for the field.
label Human friendly label for the field.
description Description for the custom field.
category Category for the custom field.
type Custom field type [ boolean, date, number, string, selectable_options]. By default is: string
selectable_options Array with strings, only if the type is selectable_options

Request

Route
POST 
/v2/account/:account_id/company_custom_fields
Headers
Accept: application/json 
Authorization: Token token={account.secret}
Content-Type: json
Body
{
  "name": "facebook_id",
  "label": "ID on Facebook",
  "category": "Social",
  "description": "This field save the company facebook id",
  "type": "string"
}

Response

Status
201
Body
{
  "_id": "5853d8c2edb7aacab9000045",
  "category": "Social",
  "name": "facebook_id",
  "label": "ID on Facebook",
  "description": "This field save the company facebook id",
  "type": "string"
}