API Association Custom Objets_to_Tickets

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!

Hey, @shutcliff :waving_hand: To confirm, this happens when you are testing from the endpoints tab of the documentation, correct? Associations v3.

Have you tried setting this up in Postman?

Thank you! — Jaycee

One more question, what happens when you make this

GET request /crm/v3/associations/{fromObjectType}/{toObjectType}/types

Can you share the response body here, please?

Thanks! — Jaycee