Hello, I am having an issue with the Version 3 API.
https://api.hubapi.com/crm/v3/objects/contacts/batch/create and https://api.hubapi.com/crm/v3/objects/contacts/batch/update Each worked once for me and inserted/updated new contacts. Now it is not updating or creating any new contacts after the first try. I am receiving a 201 response for each request I do and this json comes back as complete, but nothing happens to the contacts in the dashboard.
{
“status”: “COMPLETE”,
“results”: [],
“startedAt”: “2022-01-21T15:02:39.819Z”,
“completedAt”: “2022-01-21T15:02:39.819Z”
} The audit log is showing a successful call. Why would it only work once? I switched ip addresses and it worked one time again and then nothing would update or create for contacts anymore. Here is the body json request body: {
“email”: “newtestsf@yahoo.com”,
“properties”: [
{
“property”: “firstname”,
“value”: “Harper”
},
{
“property”: “lastname”,
“value”: “Wolfbergs”
},
{
“property”: “website”,
“value”: “http://hubspot.com”
},
{
“property”: “company”,
“value”: “HubSpot”
},
{
“property”: “phone”,
“value”: “555-122-2323”
},
{
“property”: “address”,
“value”: “25 First Street”
},
{
“property”: “city”,
“value”: “Cambridge”
},
{
“property”: “state”,
“value”: “MA”
},
{
“property”: “zip”,
“value”: “02139”
}
]
},
{
“email”: “testingapifs@hubspot.com”,
“properties”: [
{
“property”: “firstname”,
“value”: “Codeys”
},
{
“property”: “lastname”,
“value”: “Huang”
},
{
“property”: “website”,
“value”: “http://hubspot.com”
},
{
“property”: “company”,
“value”: “HubSpot”
},
{
“property”: “phone”,
“value”: “555-122-2323”
},
{
“property”: “address”,
“value”: “25 First Street”
},
{
“property”: “city”,
“value”: “Cambridge”
},
{
“property”: “state”,
“value”: “MA”
},
{
“property”: “zip”,
“value”: “02139”
}
]
}
Is Version 3 buggy? Version 1 works every time for me for batch updating and creating. Where can I go for help with this? It is acting like it is working, but nothing changes in the dashboard unless I change my IP address then it works one time and then not again after.
Thank you,
Ryan