59.12 GET_REQUEST_HEADER Function
This function gets a specific request header value out of the request headers array.
Syntax
APEX_WEB_SERVICE.GET_REQUEST_HEADER (
p_header_name VARCHAR2 )
RETURN VARCHAR2;
Parameters
Parameter | Description |
---|---|
p_header_name |
The parameter name (case is normalized for the search in the header array). |
Example
select apex_web_service.get_request_header('ECID-Context') from dual;
Parent topic: APEX_WEB_SERVICE