This commit is contained in:
2026-02-11 19:34:31 +01:00
parent f176788267
commit d91e7e746c
4 changed files with 12 additions and 6 deletions

View File

@@ -236,7 +236,13 @@ export class CheckObjeniousRequests {
private async notifyFinalization(operation: ObjeniousOperation & { msisdn: string }) {
console.log("Notificada, ", operation)
const req = this.httpClient.client.post<any>(env.NOTIFICATION_URL,
{ operation: operation }
{ operation: operation },
{
headers: {
"x-apikey-sim-activation": "9e48c4ac-1ab0-4397-b3f3-6c239200dfe6"
}
}
)
await req
}