List Customer Property Definitions

Request

GET /v2/customer-properties HTTP/1.1
Authorization: Bearer oauth_token

Response

HTTP/1.1 200 OK
Content-Type: application/hal+json

{
  "_embedded" : {
    "customer-properties" : [ {
      "type" : "text",
      "slug" : "car",
      "name" : "Car"
    }, {
      "type" : "number",
      "slug" : "employees",
      "name" : "Employees"
    }, {
      "type" : "dropdown",
      "slug" : "plan",
      "name" : "Plan",
      "options" : [ {
        "id" : "556cca5f-1afc-48ef-8323-b88b55808404",
        "label" : "Standard"
      }, {
        "id" : "1313b25a-1150-49a4-8514-5b31f37e427f",
        "label" : "Plus"
      }, {
        "id" : "f2cbc0ee-95ea-4ef2-82d3-e357dc650989",
        "label" : "Company"
      } ]
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "..."
    }
  }
}