diff --git a/src/app/core/interceptors/httpInterceptor.ts b/src/app/core/interceptors/httpInterceptor.ts index e4bff7ae62..57c3cd49ef 100644 --- a/src/app/core/interceptors/httpInterceptor.ts +++ b/src/app/core/interceptors/httpInterceptor.ts @@ -128,7 +128,13 @@ export class HttpConfigInterceptor implements HttpInterceptor { const osVersion = deviceInfo.osVersion; const operatingSystem = deviceInfo.operatingSystem; const mobileModifiedappVersion = `fyle-mobile::${appVersion}::${operatingSystem}::${osVersion}`; - request = request.clone({ headers: request.headers.set('X-App-Version', mobileModifiedappVersion) }); + request = request.clone({ + setHeaders: { + 'X-App-Version': mobileModifiedappVersion, + 'X-Page-Url': `${window.location.href}`, + 'X-Source-Identifier': 'mobile_app', + }, + }); return next.handle(request).pipe( catchError((error) => {