Ideal Customer Profiles
v1

Update an Ideal Customer Profile

Update an existing Ideal Customer Profile (ICP). All attributes are optional; only the attributes you send are changed. Sending filters replaces every category, not just the one you name.

:::info Requires the icps:write OAuth2 scope. :::

patch/v1/icps/{id}

Path parameters

idstring required

The ICP ID.

Query parameters

account_idstring required

The Leadfeeder Account ID. The Account ID can be retrieved using the List Accounts endpoint.

Request body

Example request

{
  "data": {
    "type": "icp",
    "attributes": {
      "name": "US Tech Companies",
      "filters": {
        "employee_count": [
          {
            "search_value": "11-50",
            "display_value": "11-50"
          }
        ],
        "industries": [
          {
            "search_value": "1594.6.4",
            "display_value": "Software Development"
          }
        ],
        "location": [
          {
            "search_value": "US",
            "type": "country_code",
            "display_value": "United States"
          }
        ]
      }
    }
  }
}

Response

Success

Example response

{
  "data": {
    "type": "icp",
    "id": "6080",
    "attributes": {
      "name": "US Prospects",
      "created_at": "2024-12-10T15:57:25Z",
      "filters": {
        "employee_count": [
          {
            "search_value": "US",
            "display_value": "United States"
          }
        ],
        "industries": [
          {
            "search_value": "US",
            "display_value": "United States"
          }
        ],
        "location": [
          {
            "search_value": "US",
            "type": "country_code",
            "display_value": "United States"
          }
        ]
      }
    }
  },
  "meta": {
    "request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
  }
}

Changes