Apinizer Documentation How-to Guides How-to Guides for Developers Groovy Usage (Script Policy) Current: Copying the Value from the Body to the Header Field Copying the Value from the Body to the Header Field import java.lang.String; int start=requestBodyTextFromClient.indexOf("access_token")+16; int end=requestBodyTextFromClient.indexOf("\"",start+1); String token=requestBodyTextFromClient.substring(start,end); requestHeaderMapToTargetAPI.put("Authorization","Bearer " + token);Copy GROOVY