Skip to main content
POST
/
contact-accounts
/
filter
Filter contact accounts
curl --request POST \
  --url https://api.reply.io/v3/contact-accounts/filter \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "search": "<string>",
  "sortBy": "<string>",
  "sortDirection": "asc",
  "listId": 123,
  "filters": [
    {
      "property": "OwnerId",
      "condition": "Equals",
      "values": "<unknown>"
    }
  ]
}
'
{
  "items": [
    {
      "id": 123,
      "ownerUserId": 123,
      "name": "<string>",
      "linkedProspectsCount": 123,
      "createdDate": "2023-11-07T05:31:56Z",
      "lastActivityDate": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "domainName": "<string>",
      "domainSecondary": "<string>",
      "industry": "<string>",
      "companySize": "Empty",
      "country": "<string>",
      "state": "<string>",
      "city": "<string>",
      "timeZoneId": "<string>",
      "linkedInUrl": "<string>",
      "phone": "<string>",
      "twitterUrl": "<string>",
      "logoUrl": "<string>",
      "email": "<string>",
      "stage": {
        "id": 123,
        "name": "<string>",
        "colorId": 123
      }
    }
  ],
  "hasMore": true
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Query Parameters

top
integer

Maximum number of items to return (default 25, max 1000)

skip
integer

Number of items to skip

Body

application/json

Request body for filtering contact accounts with advanced criteria

search
string | null

Search term to filter accounts by name

sortBy
string | null

Field name to sort by

sortDirection
enum<string> | null

Sort direction

Available options:
asc,
desc
listId
integer | null

Filter by contact list ID

filters
Account Filter Item · object[] | null

Advanced filter conditions

Response

Paginated list of contact accounts matching filter criteria

items
Contact Account · object[]
hasMore
boolean

Whether more items are available beyond the current page