Using the Request Header Transform with Tyk OAS APIs
Last updated: 6 minutes read.
Tyk’s request header transform middleware enables you to append or delete headers on requests to your API endpoints before they are passed to your upstream service.
There are two options for this:
- API-level modification that is applied to all requests to the API
- endpoint-level modification that is applied only to requests to a specific endpoint
Note
If both API-level and endpoint-level middleware are configured, the API-level transformation will be applied first.
When working with Tyk OAS APIs the transformation is configured in the Tyk OAS API Definition. You can do this via the Tyk Dashboard API or in the API Designer.
If you’re using the legacy Tyk Classic APIs, then check out the Tyk Classic page.
Configuring the Request Header Transform in the Tyk OAS API Definition
The API-level and endpoint-level request header transforms are configured in different sections of the API definition, though have a common configuration.
API-level transform
To append headers to, or delete headers from, all requests to your API (i.e. for all endpoints) you must add a new transformRequestHeaders
object to the middleware.global
section of the Tyk OAS Extension (x-tyk-api-gateway
) in your Tyk OAS API Definition.
You only need to enable the middleware (set enabled:true
) and then configure the details of headers to add
and those to remove
.
For example:
|
|
This configuration will add three new headers to each request:
X-Static
with the valuefoobar
X-Request-ID
with a dynamic value taken from therequest_id
context variablesX-User-ID
with a dynamic value taken from theuid
field in the session metadata
It will also delete one header (if present) from each request:
Auth_Id
The configuration above is a complete and valid Tyk OAS API Definition that you can import into Tyk to try out the API-level request header transform.
Endpoint-level transform
The design of the Tyk OAS API Definition takes advantage of the operationId
defined in the OpenAPI Document that declares both the path and method for which the middleware should be added. Endpoint paths
entries (and the associated operationId
) can contain wildcards in the form of any string bracketed by curly braces, for example /status/{code}
. These wildcards are so they are human readable and do not translate to variable names. Under the hood, a wildcard translates to the “match everything” regex of: (.*)
.
The request header transform middleware (transformRequestHeaders
) can be added to the operations
section of the Tyk OAS Extension (x-tyk-api-gateway
) in your Tyk OAS API Definition for the appropriate operationId
(as configured in the paths
section of your OpenAPI Document).
The transformRequestHeaders
object has the following configuration:
enabled
: enable the middleware for the endpointadd
: a list of headers, in key:value pairs, to be appended to the requestremove
: a list of headers to be deleted from the request (if present)
For example:
|
|
In this example the Request Header Transform middleware has been configured for requests to the GET /status/200
endpoint. Any request received to that endpoint will have the X-Static
header removed and the X-Secret
header added, with the value set to the-secret-key-is-secret
.
The configuration above is a complete and valid Tyk OAS API Definition that you can import into Tyk to try out the endpoint-level request header transform.
Combining API-level and Endpoint-level transforms
If the API-level transform in the previous example is applied to the same API, then because the API-level transformation is performed first, the X-Static
header will be added (by the API-level transform) and then removed (by the endpoint-level transform) such that the overall effect of the two transforms for a call to GET /status/200
would be to add three headers:
X-Request-ID
X-User-ID
X-Secret
and to remove one:
Auth_Id
Configuring the Request Header Transform in the API Designer
Adding and configuring the transforms to your API endpoints is easy when using the API Designer in the Tyk Dashboard, simply follow these steps:
Adding an API-level transform
From the API Designer on the Settings tab, after ensuring that you are in edit mode, toggle the switch to Enable Transform request headers in the Middleware section:
Then select NEW HEADER as appropriate to add or remove a header from API requests. You can add or remove multiple headers by selecting ADD HEADER to add another to the list:
Adding an endpoint level transform
Step 1: Add an endpoint
From the API Designer add an endpoint that matches the path and method to which you want to apply the middleware.
Step 2: Select the Request Header Transform middleware
Select ADD MIDDLEWARE and choose the Request Header Transform middleware from the Add Middleware screen.
Step 3: Configure header transformation
Select NEW HEADER to configure a header to be added to or removed from the request.
You can add multiple headers to either list by selecting NEW HEADER again.
Step 4: Save the API
Select ADD MIDDLEWARE to save the middleware configuration. Remember to select SAVE API to apply the changes.