there was a problem with the request

I am doing a search on contacts and I keep getting a response of

{

“status”: “error”,

“message”: “There was a problem with the request.”,

“correlationId”: “32073a19-9272-4955-a756-e3b6a4671738”

}

the correlation id keeps changing.

This type of error response does not help determine what is going wrong.

I am just making a simply search reguest

curl --location --request POST ‘https://api.hubapi.com/crm/v3/objects/contacts/search?hapikey=MY_API_KEY’ \

--header ‘Content-Type: application/json’ \

--data-raw '{

“filterGroups”: [

{

“filters”: [

{

“value”: “Spam (Auto Deletes Contact)”,

“propertyName”: “Contact Type”,

“operator”: “EQ”

}

]

}

],

“limit”: 10,

“after”: 0

}’

Where can I go to get some help?

@RJarrett ,

The property name does not appear correct. The internal name of the property will never include a space.

Yes I discovered this. I do not remember seeing anywhere that mentioned what the mapping of External Property Names to the internal name.
If the error message had said this was the problem then I would have been able to fix it straight away but I had the frustration of ultimately finding the solution to the problem by trial and error. I had spent a long time trying to find the answer before even posting this question.

Indeed, the error message is less than helpful. I will report to the team and see if we can make it more meaningful