Buyer Personas
v1
Get Buyer Persona Details
Get the details of a specific buyer persona by ID, including its name, creation timestamp, and the full set of filter criteria that define it.
Credit Note: Retrieving a buyer persona definition does not consume credits.
:::info Requires the buyer_personas:read OAuth2 scope. :::
get/v1/buyer-personas/{id}
Path parameters
idstring required
The buyer persona ID.
Query parameters
account_idstring required
The Leadfeeder Account ID. The Account ID can be retrieved using the List Accounts endpoint.
Response
Success
Example response
{
"data": {
"type": "buyer_persona",
"id": "7421",
"attributes": {
"name": "Sales Managers",
"created_at": "2024-12-10T15:57:25Z",
"filters": {
"department": [
{
"search_value": "US",
"display_value": "United States"
}
],
"job_title": [
{
"search_value": "US",
"display_value": "United States"
}
],
"location": [
{
"search_value": "US",
"display_value": "United States"
}
],
"seniority": [
{
"search_value": "US",
"display_value": "United States"
}
]
}
}
},
"meta": {
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}