Hi,
I am trying to grab Authorization key which is from a document field and then its value
Document field looks something like this:
{
"document": {
"protocol": "http",
"subprotocol": "HTTP",
"http": {
"requestUrl": "/rest/test",
"method": "GET",
"requestHdrs": {
"Accept": "application/json",
"**Authorization**": "**Basic whatever**"
},
"ipInfo": {
"localPort": "5555",
"remotePort": "64880"
}
}
}
}
Basically loop through entire document then within the document loop create another loop for http then within http loop create another loop for requestHdrs to eventually grab Authorization key and its value.
Thanks