Passer au contenu principal
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
}

Paramètres de chemin

object_type
string
requis

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
requis

The name of the group.

Corps

application/json
displayName
string

The displayed name of the group

displayOrder
integer

The order of the group

Réponse

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 April 2, 2026