i have 2 different api projects (1 shop, 2 bank) and when calling from shop to bank want to get caller info in bank api.
there is calling method
var connection = https://localhost:44355/ + @"api/costomer";
var response = await new HttpClient().GetAsync(connection + $"/{id}");
there is how i try to get info in bank api
var str = Request.Headers["Origin"];