Skip to main content
GET
/
crm
/
v3
/
property-validations
/
{objectTypeId}
/
{propertyName}
Read validation rules for a property
curl --request GET \
  --url https://api.hubapi.com/crm/v3/property-validations/{objectTypeId}/{propertyName} \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "ruleArguments": [
        "<string>"
      ],
      "ruleType": "AFTER_DATETIME_DURATION",
      "shouldApplyNormalization": true
    }
  ]
}

Supported products

Requires one of the following products or higher.
Marketing HubMarketing Hub -Free
Sales HubSales Hub -Free
Service HubService Hub -Free
Content HubContent Hub -Free
Data HubData Hub -Free

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

objectTypeId
string
required

The ID of the object type to which the property belongs.

propertyName
string
required

The name of the property whose validation rules are being retrieved.

Response

successful operation

results
object[]
required

Collection of validation rules configured for the specified property. Each rule defines a constraint that property values must satisfy (e.g., format requirements, length limits, allowed values).

Last modified on December 16, 2025