Hello!
I’ve been playing with Hubspot via REST API.
What I discovered is that between adding a record (let’s say a contact) to my account via POST request, it’s not immediately returned by the Search API.
Most of the time it takes up to 5-10 seconds, for the record to be returned from the Search request.
Is that expected behavior?
Or is it something we can improve?
Here are the requests I’m making
Create Record:
curl 'https://api.hubapi.com/crm/v3/objects/contacts' \
--data-raw '{
"properties": {
"email": "john@example.com",
"firstname": "John",
"lastname": "Doe"
}
}'
Search records:
curl 'https://api.hubapi.com/crm/v3/objects/contacts/search' \
--data '{
"limit": 100
}'
PS. It’s not a problem of paging, as I’m literally having only few objects in my account.
Anynone can relate to this problem?