Hi,
I am trying to retrieve deal splits from our app client. For some reason, it works perfectly for some deals but results in an internal error for others.
For example:
curl --request POST \
--url https://api.hubapi.com/crm/v3/objects/deals/splits/batch/read \
--header 'authorization: Bearer MYBEARER' \
--header 'content-type: application/json' \
--data '{
"inputs": [
{
"id": "2947161292"
}
]
}'
work perfectly !!
curl --request POST \
--url https://api.hubapi.com/crm/v3/objects/deals/splits/batch/read \
--header 'authorization: Bearer MYBEARER' \
--header 'content-type: application/json' \
--data '{
"inputs": [
{
"id": "17555105680"
}
]
}'
Give
{
"status": "error",
"message": "internal error",
"correlationId": "3b35326e-a077-4078-8d33-7290506fe8f1"
}