Ideal Customer Profiles
v1
Create an Ideal Customer Profile
Create a new Ideal Customer Profile (ICP) in the account. Creating an ICP also creates the custom feed that surfaces the companies matching it.
Credit Note: Creating an ICP does not consume credits.
:::info Requires the icps:write OAuth2 scope. :::
post/v1/icps
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",
"display_value": "United States"
}
]
}
}
},
"meta": {
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}