Product custom fields

Update

PUT method to update products custom fields.

Parameters

Name Description
account_id required Your account unique identifier to access API.
product_custom_id required Id of custom
category Category for the custom field.
label Human friendly label for the field.
description Description for the custom field.
selectable_options Array with strings, only if the type is selectable_options

Request

Route
PUT 
/v2/account/:account_id/product_custom_fields/:product_custom_id
Headers
Accept: application/json 
Authorization: Token token={account.secret}
Content-Type: json
Body
{
  "label": "ID on Facebook",
  "category": "Social",
  "description": "This field save the contact facebook id"
}

Response

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