Passer au contenu principal
PUT
/
properties
/
v1
/
companies
/
groups
/
named
/
{group_name}
Update a Company Property Group
curl --request PUT \
  --url https://api.hubapi.com/properties/v1/companies/groups/named/{group_name} \
  --header 'Content-Type: application/json' \
  --data '
{
  "displayName": "<string>",
  "displayOrder": 123
}
'
{
  "name": "<string>",
  "displayName": "<string>",
  "displayOrder": 123,
  "hubspotDefined": true,
  "properties": [
    {
      "name": "<string>",
      "label": "<string>",
      "description": "<string>",
      "groupName": "<string>",
      "options": [
        {
          "description": "<string>",
          "label": "<string>",
          "value": "<string>",
          "displayOrder": 123,
          "hidden": true,
          "readOnly": true,
          "doubleData": 123
        }
      ],
      "displayOrder": 123,
      "formField": true,
      "readOnlyValue": true,
      "readOnlyDefinition": true,
      "hidden": true,
      "mutableDefinitionNotDeletable": true,
      "favorited": true,
      "favoritedOrder": 123,
      "calculated": true,
      "externalOptions": true,
      "displayMode": "<string>",
      "createdUserId": 123,
      "updatedUserId": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.fr/docs/llms.txt

Use this file to discover all available pages before exploring further.

Paramètres de chemin

group_name
string
requis

The name of the property group you want to update.

Corps

application/json
displayName
string

The displayed name of the group

displayOrder
integer

The order of the group

Réponse

200 - application/json

Company 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

properties
object[]

Properties in this group (only included if includeProperties=true)

Last modified on April 2, 2026