Hello,
I am trying to establish connection from Tulip with Inmation over On Prem CH.
Basically I do use Basic auth on Connector level, TLS, and custom port
(connection test is successful here). Once it comes to CF POST request I am trying to send JSON with body:
TO_JSON({
“items”: [
{
“p”: “/System/Core/_Global Core Logic/UseCases/Global Core Projects/App_Name/Tulip Interface/TestEndpoint”,
“v”: [
{
“operation”: “insert”,
“site”: “site_ID_here”,
“useCase”: “app_name_here”,
“version”: 1,
“content”: {
“col1”: “val1”,
“col2”: “val2”
}
}
],
“q”: 0,
“t”: “2026-02-02T09:35:15.225Z”
}
]
})
My header contains:
Conent-Type: application/json
Accept: application/json
Each time I am trying to proceed with POST request I do get Function Test Error: Function Test Error
There was an error while testing the function: [500] FunctionExecutionFailedError: incorrect header check
and I can not reach Inmantion, did You have maybe such issue in the past or have idea how to proceed further? It looks that 500 is comming from Tulip connector itself.
Thank You