I'm in the process of creating a custom connector for the Australian ABN Lookup service. The issue I am running into is that the service returns the results wrapped in a callback function
callback({"Abn":"","AbnStatus":"","Acn":"","AddressDate":null,"AddressPostcode":"","AddressState":"","BusinessName":[],"EntityName":"","EntityTypeCode":"","EntityTypeName":"","Gst":null,"Message":"Search text is not a valid ABN or ACN"})
I was wondering if anyone has come across a way to remove the callback section of the string in the connector so that valid JSON is returned to the flow
My other option with the lookup service is to return XML but I believe that this will cause other issues