Docs

Create Listings (v2026-03)

Creates a listing in HubSpot.

POST

Body

Arguments
objectrequired

Object of company properties to update, e.g. {"arr":"250000"}.

array of object

Associations

Use this field to associate the new Listing with existing HubSpot records, such as contacts, companies, deals, or other supported CRM objects.

Provide an array of association objects using the following structure:

[
  {
    "to": {
      "id": "123456789"
    },
    "types": [
      {
        "associationCategory": "HUBSPOT_DEFINED",
        "associationTypeId": 882
      }
    ]
  }
]

Each association must include:

  • to.id: The HubSpot record ID of the existing record you want to associate with the new Listing.

  • types: An array describing the relationship between the Listing and the associated record.

  • associationCategory: Use HUBSPOT_DEFINED for standard HubSpot associations or USER_DEFINED for custom association labels.

  • associationTypeId: The numeric ID of the association type or label.

You may include multiple objects in the array to associate the Listing with more than one record.

Example with multiple associations:

[
  {
    "to": {
      "id": "123456789"
    },
    "types": [
      {
        "associationCategory": "HUBSPOT_DEFINED",
        "associationTypeId": 882
      }
    ]
  },
  {
    "to": {
      "id": "987654321"
    },
    "types": [
      {
        "associationCategory": "HUBSPOT_DEFINED",
        "associationTypeId": 884
      }
    ]
  }
]

The correct associationTypeId depends on the target object type and association label configured in the connected HubSpot account.

Field selectionChoose which fields should be included in the response. Learn more
string

Comma-separated response fields to include.

Every app you connect,one REST pattern

Call any app with one REST pattern. MindCloud handles each provider's auth, request shape, and responses for you.

Learn what the Universal API is
One REST patternUse the same request structure across apps like Slack, HubSpot, Salesforce, and thousands more.
Managed connectionsSend a MindCloud connection ID instead of handling provider tokens, refresh logic, and credential storage yourself.
Action-level docsEach action page shows the exact endpoint, required arguments, optional controls, and response behavior for that app version.