List Contact Properties

GET
https://reloop.sh/api/contacts/v1/properties/list

Query Parameters

pagenumberdefault: 1
  • Minimum value: 1
limitnumberdefault: 10
  • Minimum value: 1
  • Maximum value: 100
searchstring

Search by name

type"string""number"

Possible values: string | number

organizationIdstring
import { Reloop } from "reloop-email";

const reloop = new Reloop({ apiKey: "rl_123456789" });

const { response: properties, error } = await reloop.contacts.listProperties({ page: 1, limit: 10 });
if (error) throw error;
{
  "object": "contact_property",
  "properties": [
    {
      "object": "contact_property",
      "id": "prop_123456789",
      "propertyName": "company_name",
      "propertyType": "string",
      "defaultValue": "Unknown",
      "createdAt": "2026-03-27T10:00:00Z",
      "updatedAt": "2026-03-27T10:00:00Z"
    }
  ],
  "total": 1,
  "page": 0,
  "limit": 0,
  "event": "evt_123456789"
}

Was this page helpful?

Edit this page