GET
/api/customers/properties
List properties
Return all profile properties for the identified customer.
Query parameters
{
"customer_uuid": "{{uuid}}"
}
Example response
{
"status": "ok",
"customer_id": 42,
"customer_uuid": "9b2f3c1a-4e5d-6f7a-8b9c-0d1e2f3a4b5c",
"properties": [
{
"key": "company_name",
"value": "Acme Inc",
"type": "text",
"updated_at": "2026-06-01T12:00:00+00:00"
}
]
}
cURL
curl -X GET \
'https://marketing.rcvtechnologies.com/api/customers/properties' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Accept: application/json'