Where and how can i get the cashTrackingSessionId for my cash reconciliation “audit“ purpose. As the API is available to get the data based on the sessionId but POS UI extension does not have ID. Earlier version supports cashTracking event observer which is not available in latest one. Please help if i can get it in POS extension
Example Query:-
query MyQuery {
cashTrackingSession(id: “”) {
adjustments {
edges {
node {
cash {
amount
currencyCode
}
staffMember {
id
firstName
}
}
}
}
}
}