Skip to main content
PUT
/
properties
/
v2
/
{object_type}
/
groups
/
named
/
{group_name}
Update an object property group
curl --request PUT \
  --url https://api.hubapi.com/properties/v2/{object_type}/groups/named/{group_name} \
  --header 'Content-Type: application/json' \
  --data '
{
  "displayName": "<string>",
  "displayOrder": 123
}
'
{
  "name": "<string>",
  "displayName": "<string>",
  "displayOrder": 123,
  "hubspotDefined": true,
  "portalId": 123
}

Path Parameters

object_type
string
required

The specific type of CRM object that the property group is assigned to. You can use the object name (e.g., contacts) or the objectTypeId (e.g., 0-1).

group_name
string
required

The name of the group.

Body

application/json
displayName
string

The displayed name of the group

displayOrder
integer

The order of the group

Response

200 - application/json

Object property group updated successfully

name
string

The internal name of the property group

displayName
string

The displayed name of the group

displayOrder
integer

The order of the group when displaying properties

hubspotDefined
boolean

Whether the group is defined by HubSpot

portalId
integer

The portal ID this group belongs to

Last modified on December 12, 2025