Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi - I am not sure I understand either ... but i can offer some advice:
When you create an app service resource (app service plan) within a resource group you're pinned to a specific App service stamp - this influences the inbound and outbound ip address list in properties for each app on the plan as these are the shared IPs available
Irrespective you're also given a default name "<your app service resource name>.azurewebsites.net" which allows you to address each web app (and for which you can override with a custom name with backing SSL cert if you wish)
So when you call other apps (in your case front end calls backend) it should be either via the default FQDN (ending in azurewebsites.net) or your custom name. You should not try and use the IP address
It is possible to use IP SSL with App service and this is a way to create a dedicated inbound IP (as opposed to shared). But even here app to app should still be using the FQDN and public DNS (not the IP) REF https://learn.microsoft.com/en-us/azure/app-service/configure-ssl-bindings#2-remap-records-for-ip-based-ssl