Skip to main content
POST
/
crm
/
properties
/
2026-03
/
{objectType}
/
groups
Create a property group
curl --request POST \
  --url https://api.hubapi.com/crm/properties/2026-03/{objectType}/groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "label": "<string>",
  "name": "<string>",
  "displayOrder": 123
}
'
{
  "archived": true,
  "label": "<string>",
  "name": "<string>",
  "displayOrder": 123
}

Supported products

Authorizations

Authorization
string
header
required

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

Path Parameters

objectType
string
required

Body

application/json
label
string
required

A human-readable label that will be shown in HubSpot.

name
string
required

The name of the property to read or modify.

displayOrder
integer<int32>

Property groups are displayed in order starting with the lowest positive integer value. Values of -1 will cause the property group to be displayed after any positive values.

Response

successful operation

archived
boolean
required
label
string
required

A human-readable label that will be shown in HubSpot.

name
string
required

The name of the property to read or modify.

displayOrder
integer<int32>

Property groups are displayed in order starting with the lowest positive integer value. Values of -1 will cause the property group to be displayed after any positive values.

Last modified on March 30, 2026