It would make sense to be able to restrict the objects that you see linked to an object, depending on the function of the object itself. For example, if you have a Custom Object name ‘‘X’’ it does not make sense as a user to see on the right panel side the option to create a custom object ‘‘X’’ again. It’s confusing for the user, as they are easy to believe they are in the wrong page.
Is there a solution in this that I am not aware of?
Hello @Efigiann
To return only defined properties, you can use the properties query parameter. For example, the following request will return only the defined properties for the companies object
https://api.hubspot.com/crm/v3/companies?properties=name,hs_object_id
The properties query parameter can take a comma-separated list of property names. You can also use the * wildcard to return all defined properties.
how to use the * wildcard
https://api.hubspot.com/crm/v3/companies?properties=*
This request will return all defined properties for the companies object.