I’m trying to invoke a rest endpoint and I want to pass 2 HTTP: headers with dynamic values. So I tried generating the values for the headers in PLSQL and pass on to http_req_headers_ parameter in Plsql_Rest_Sender_API.Call_Rest_EndPoint_Json_Sync. However I can’t get that working for more than one dynamic HTTP header.
Of course I can define multiple headers in the routing address but I have two with dynamic values.
What is the separator I should use here?
This is how I have added one dynamic HTTP header to the request, but the header ‘Idempotency-Key’ defined as static in the address should ne handled dynamically in PLSQL but I can’t find a way of concatenating ‘Authorization’ header and ‘Idempotency-Key’ header.
I tried separating them with , ; but that does not seem to work.