0
deltavision created
Version: 11.2.1 Producttype: MVC Framework: .NET Core
Hi,
an external system, needs to inform our system with a callback (webhook).
How do we implement that? We need the callback to include the tenantId?
2 Answer(s)
-
0
Hi @deltavision
You need to create an endpoint on your system (similar to https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Core/Controllers/StripeControllerBase.cs#L28) and then you can call it from an external system. External system can include Abp.TenantId request header with tenant's Id.
-
0
Hi @ismcagdas
thank you :-)