Validation of requests with Apigee

How can I validate in my api the requests that come from Apigee that I don't know by headers

0 2 88
2 REPLIES 2

Usually this is done with mutual (aka 2-way) TLS - your upstream endpoint can validate that the incoming call used a specific TLS key. If you provision only Apigee with that TLS key, then you know the call came from Apigee. 

Curious why would you ignore headers?

You are discarding whole lot of patterns (ex: token exchange,signature verification, hmac etc) and it leads to only mutual tls pattern which requires proper pki infrastructure setup or by manipulating payload ( encryption/decryption of paylaod & validate) etc..