Hey there,
I'm recreating the bootcamp rental cars project from scratch so I can practice the process and help it become 'muscle memory'. After a bit of research and multiple attempts at fixing the issue, I keep receiving a 400 Bad Request error within Postman when I attempt to Import the Properties.
At this point, I have:
Utilized the locations properties JSON file (only custom-object I've tried properties with so far, but I was able to successfully create the Custom Objects through Postman).
I am using
POST https://api.hubapi.com/crm/v3/properties/{objectType}/batch/create, where
{objectType} is being replaced with the Locations Custom Object Internal Name of
locations.
I have included the Authorization header, along with the Content-Type header (set to application/json)
I keep receiving the following message with the 400 Bad Request error:
{
"status": "error",
"message": "Unable to infer object type from: locations",
"correlationId": "efb9c8dd-6b0c-47cb-bbcf-cff5c7ec73c7"
}
Am I looking at the wrong internal name?