added stuf for correlationId
This commit is contained in:
parent
3db667b720
commit
acab82bea0
1 changed files with 4 additions and 1 deletions
|
|
@ -327,6 +327,8 @@ export const useMainStore = defineStore({
|
|||
}
|
||||
},
|
||||
getCoveragePolicyInfo({accountNumber, policyNumber, dateOfLoss, zipCode}){
|
||||
//todo: replace place holder correlationId with the real thing
|
||||
const placeHolderCorrelationId = "00000000-0000-0000-0000-000000000000";
|
||||
try{
|
||||
const response = globalMethods.callHttpClient({
|
||||
method:endpoints.CoveragePolicyInfo.method,
|
||||
|
|
@ -335,7 +337,8 @@ export const useMainStore = defineStore({
|
|||
accountNumber: accountNumber,
|
||||
policyNumber: policyNumber,
|
||||
dateOfLoss: dateOfLoss,
|
||||
zipCode: zipCode
|
||||
zipCode: zipCode,
|
||||
correlationId: placeHolderCorrelationId
|
||||
}
|
||||
});
|
||||
return response;
|
||||
|
|
|
|||
Loading…
Reference in a new issue