Hi!
I’m trying to make associations between my custom objet and tickets. I’m using v3:
mine is:
curl --request POST \
--url https://api.hubapi.com/crm/v3/associations/offers/tickets/batch/create \
--header ‘authorization: Bearer YOUR_ACCESS_TOKEN’ \
--header ‘content-type: application/json’ \
--data '{ {
“inputs”: [
{
“from”: {
“id”: “53628”
},
“to”: {
“id”: “12726”
},
“type”: “offers_to_ticket”
}
]
}
and the response is:
{"status":"COMPLETE","results":[],"startedAt":"2023-03-03T09:46:13.837Z","completedAt":"2023-03-03T09:46:13.837Z"}
but when I go to the ticket, there is no new offer associated.
Idk if there something wrong.
Thanks!
