Hi,
I have created a custom object as “My_Object”, But while executing the schema endpoint to get all the field schema, I am not getting the response, It should be return from field schema.
API - https://api.hubapi.com/crm/v3/schemas/My_Object
while executing the above api getting the below response.
{
"status": "error",
"message": "Unable to infer object type from: My Object",
"correlationId": "353df7e7-a271-485a-8be2-6b3bbfaee435"
}
the same API is working with single word as an example custom object “worker”.
API - https://api.hubapi.com/crm/v3/schemas/worker
{
"labels": {
"singular": "worker",
"plural": "workers"
},
"requiredProperties": \[
"worker\_id"
],
It seems like we can create a custom object with “underscore”, but at the time of checking the schema part custom object is not working with “underscore”.
Can anyone help me on this.