Store
Store
List all numberseries for a tenant.
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+The number series type
Reference to a specific page in a result set.
The number of items per page in a result set.
Defines which field the resource list is sorted by.
| ENUM | Description |
|---|---|
| ASC | Sort in ascending order |
| DESC | Sort in descending order |
Example response
GET /v2/tenants/{tenantUid}/number-series HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"currentValue": 1,
"end": 1,
"name": "text",
"numberSeriesUid": "text",
"start": 1,
"type": "PURCHASE"
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}Add a new numberseries to a tenant.
Required permissions: NUMBER_SERIE
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+Number series response
^[A-Za-z0-9-_]+POST /v2/tenants/{tenantUid}/number-series HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 76
{
"end": 1,
"name": "text",
"start": 1,
"type": "PURCHASE",
"numberSeriesUid": "text"
}Number series response
{
"currentValue": 1,
"end": 1,
"name": "text",
"numberSeriesUid": "text",
"start": 1,
"type": "PURCHASE"
}Get a specific numberseries for a tenant.
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a number serie id.
^[A-Za-z0-9-_]+Number series response
^[A-Za-z0-9-_]+GET /v2/tenants/{tenantUid}/number-series/{numberSeriesUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Number series response
{
"currentValue": 1,
"end": 1,
"name": "text",
"numberSeriesUid": "text",
"start": 1,
"type": "PURCHASE"
}Update numberseries record.
Required permissions: NUMBER_SERIE
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a number serie id.
^[A-Za-z0-9-_]+Number series response
^[A-Za-z0-9-_]+PUT /v2/tenants/{tenantUid}/number-series/{numberSeriesUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"end": 1,
"name": "text",
"start": 1
}Number series response
{
"currentValue": 1,
"end": 1,
"name": "text",
"numberSeriesUid": "text",
"start": 1,
"type": "PURCHASE"
}List all stores.
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+External reference to a store.
Reference to the name of a store.
Reference to a specific page in a result set.
The number of items per page in a result set.
Defines which field the resource list is sorted by.
| ENUM | Description |
|---|---|
| ASC | Sort in ascending order |
| DESC | Sort in descending order |
Reference to an organization uid.
Example response
GET /v2/tenants/{tenantUid}/stores HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"address": "text",
"city": "text",
"countryCode": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"defaultWarehouseUid": "text",
"defaultReturnWarehouseUid": "text",
"defaultDeliveryWarehouseUid": "text",
"email": "text",
"externalId": "text",
"isActive": true,
"lastModifiedAt": "2026-01-01T00:00:00.000Z",
"latitude": 1,
"longitude": 1,
"name": "text",
"postalCode": "text",
"phone": "text",
"purchaseNumberSeriesUid": "text",
"internalPurchaseNumberSeriesUid": "text",
"rmaOrderNumberSeriesUid": "text",
"customerLedgerNumberSeriesUid": "text",
"quicksaleCategoryUid": "text",
"receiptMessage": "text",
"emailReceiptMessage": "text",
"exchangenoteMessage": "text",
"exchangenoteValidDays": 1,
"salesPriceUid": "text",
"purchasePriceListUid": "text",
"appSettings": {
"hidePurchase": true,
"hideReceivement": true,
"enableUnlinkedPayments": true
},
"storeUid": "text",
"vatNumber": "text",
"voucherNumberSeriesUid": "text",
"serviceNumberSeriesUid": "text",
"hasWorkShop": true,
"organizationUid": "text",
"availableExtensions": [
{
"extensionCode": "FLOWGIFTCARD",
"name": "text"
}
],
"openingHours": {
"monday": "text",
"tuesday": "text",
"wednesday": "text",
"thursday": "text",
"friday": "text",
"saturday": "text",
"sunday": "text",
"note": "text"
},
"bankInfo": {
"accountNumber": "text",
"bankName": "text",
"iban": "text",
"swift": "text"
},
"websiteUrl": "text",
"invoiceFooterText": "text",
"labelComparisonPricelistUid": "text",
"addresses": [
{
"storeAddressUid": "text",
"companyName": "text",
"vatNumber": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"type": "PURCHASE_INVOICE_ADDRESS",
"default": true,
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}
],
"enableStoreCashReconciliation": true,
"cashReconciliationCutOffTime": "00:00:00",
"logoAssetUid": "text"
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}Creates a new store.
Required permissions: STORE
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*Number of days an exchangenote is valid.
^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*VAT identification number for value added tax reporting purposes.
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*Daily cut-off time (e.g. 4 AM). After this time, tills cannot open until the previous settlement is complete.
^[A-Za-z0-9-_]*^[A-Za-z0-9-_]+Example response
^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*Number of days an exchangenote is valid.
^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]+VAT identification number for value added tax reporting purposes.
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*Daily cut-off time (e.g. 4 AM). After this time, tills cannot open until the previous settlement is complete.
^[A-Za-z0-9-_]*POST /v2/tenants/{tenantUid}/stores HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1271
{
"address": "text",
"city": "text",
"countryCode": "text",
"defaultReturnWarehouseUid": "text",
"defaultWarehouseUid": "text",
"defaultDeliveryWarehouseUid": "text",
"email": "text",
"externalId": "text",
"isActive": true,
"latitude": 1,
"longitude": 1,
"name": "text",
"phone": "text",
"postalCode": "text",
"purchaseNumberSeriesUid": "text",
"internalPurchaseNumberSeriesUid": "text",
"rmaOrderNumberSeriesUid": "text",
"customerLedgerNumberSeriesUid": "text",
"quicksaleCategoryUid": "text",
"receiptMessage": "text",
"emailReceiptMessage": "text",
"exchangenoteMessage": "text",
"exchangenoteValidDays": 1,
"salesPriceUid": "text",
"purchasePriceListUid": "text",
"appSettings": {
"hidePurchase": true,
"hideReceivement": true,
"enableUnlinkedPayments": true
},
"vatNumber": "text",
"voucherNumberSeriesUid": "text",
"hasWorkshop": true,
"organizationUid": "text",
"serviceNumberSeriesUid": "text",
"openingHours": {
"monday": "text",
"tuesday": "text",
"wednesday": "text",
"thursday": "text",
"friday": "text",
"saturday": "text",
"sunday": "text",
"note": "text"
},
"bankInfo": {
"accountNumber": "text",
"bankName": "text",
"iban": "text",
"swift": "text"
},
"websiteUrl": "text",
"invoiceFooterText": "text",
"labelComparisonPricelistUid": "text",
"enableStoreCashReconciliation": true,
"cashReconciliationCutOffTime": "00:00:00",
"logoAssetUid": "text",
"storeUid": "text"
}Example response
{
"address": "text",
"city": "text",
"countryCode": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"defaultWarehouseUid": "text",
"defaultReturnWarehouseUid": "text",
"defaultDeliveryWarehouseUid": "text",
"email": "text",
"externalId": "text",
"isActive": true,
"lastModifiedAt": "2026-01-01T00:00:00.000Z",
"latitude": 1,
"longitude": 1,
"name": "text",
"postalCode": "text",
"phone": "text",
"purchaseNumberSeriesUid": "text",
"internalPurchaseNumberSeriesUid": "text",
"rmaOrderNumberSeriesUid": "text",
"customerLedgerNumberSeriesUid": "text",
"quicksaleCategoryUid": "text",
"receiptMessage": "text",
"emailReceiptMessage": "text",
"exchangenoteMessage": "text",
"exchangenoteValidDays": 1,
"salesPriceUid": "text",
"purchasePriceListUid": "text",
"appSettings": {
"hidePurchase": true,
"hideReceivement": true,
"enableUnlinkedPayments": true
},
"storeUid": "text",
"vatNumber": "text",
"voucherNumberSeriesUid": "text",
"serviceNumberSeriesUid": "text",
"hasWorkShop": true,
"organizationUid": "text",
"availableExtensions": [
{
"extensionCode": "FLOWGIFTCARD",
"name": "text"
}
],
"openingHours": {
"monday": "text",
"tuesday": "text",
"wednesday": "text",
"thursday": "text",
"friday": "text",
"saturday": "text",
"sunday": "text",
"note": "text"
},
"bankInfo": {
"accountNumber": "text",
"bankName": "text",
"iban": "text",
"swift": "text"
},
"websiteUrl": "text",
"invoiceFooterText": "text",
"labelComparisonPricelistUid": "text",
"addresses": [
{
"storeAddressUid": "text",
"companyName": "text",
"vatNumber": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"type": "PURCHASE_INVOICE_ADDRESS",
"default": true,
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}
],
"enableStoreCashReconciliation": true,
"cashReconciliationCutOffTime": "00:00:00",
"logoAssetUid": "text"
}Get details for a store.
Access token recevied after user login with a deviceToken
Reference to a Store.
^[A-Za-z0-9-_]+Reference to a tenant.
^[A-Za-z0-9-_]+Example response
^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*Number of days an exchangenote is valid.
^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]+VAT identification number for value added tax reporting purposes.
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*Daily cut-off time (e.g. 4 AM). After this time, tills cannot open until the previous settlement is complete.
^[A-Za-z0-9-_]*GET /v2/tenants/{tenantUid}/stores/{storeUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"address": "text",
"city": "text",
"countryCode": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"defaultWarehouseUid": "text",
"defaultReturnWarehouseUid": "text",
"defaultDeliveryWarehouseUid": "text",
"email": "text",
"externalId": "text",
"isActive": true,
"lastModifiedAt": "2026-01-01T00:00:00.000Z",
"latitude": 1,
"longitude": 1,
"name": "text",
"postalCode": "text",
"phone": "text",
"purchaseNumberSeriesUid": "text",
"internalPurchaseNumberSeriesUid": "text",
"rmaOrderNumberSeriesUid": "text",
"customerLedgerNumberSeriesUid": "text",
"quicksaleCategoryUid": "text",
"receiptMessage": "text",
"emailReceiptMessage": "text",
"exchangenoteMessage": "text",
"exchangenoteValidDays": 1,
"salesPriceUid": "text",
"purchasePriceListUid": "text",
"appSettings": {
"hidePurchase": true,
"hideReceivement": true,
"enableUnlinkedPayments": true
},
"storeUid": "text",
"vatNumber": "text",
"voucherNumberSeriesUid": "text",
"serviceNumberSeriesUid": "text",
"hasWorkShop": true,
"organizationUid": "text",
"availableExtensions": [
{
"extensionCode": "FLOWGIFTCARD",
"name": "text"
}
],
"openingHours": {
"monday": "text",
"tuesday": "text",
"wednesday": "text",
"thursday": "text",
"friday": "text",
"saturday": "text",
"sunday": "text",
"note": "text"
},
"bankInfo": {
"accountNumber": "text",
"bankName": "text",
"iban": "text",
"swift": "text"
},
"websiteUrl": "text",
"invoiceFooterText": "text",
"labelComparisonPricelistUid": "text",
"addresses": [
{
"storeAddressUid": "text",
"companyName": "text",
"vatNumber": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"type": "PURCHASE_INVOICE_ADDRESS",
"default": true,
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}
],
"enableStoreCashReconciliation": true,
"cashReconciliationCutOffTime": "00:00:00",
"logoAssetUid": "text"
}Update details for a store. Partial updates are allowed.
Required permissions: STORE
Access token recevied after user login with a deviceToken
Reference to a Store.
^[A-Za-z0-9-_]+Reference to a tenant.
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*Number of days an exchangenote is valid.
^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*VAT identification number for value added tax reporting purposes.
^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*Daily cut-off time (e.g. 4 AM). After this time, tills cannot open until the previous settlement is complete.
^[A-Za-z0-9-_]*Example response
^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*Number of days an exchangenote is valid.
^[A-Za-z0-9-_]*^[A-Za-z0-9-_]*^[A-Za-z0-9-_]+VAT identification number for value added tax reporting purposes.
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*Daily cut-off time (e.g. 4 AM). After this time, tills cannot open until the previous settlement is complete.
^[A-Za-z0-9-_]*PUT /v2/tenants/{tenantUid}/stores/{storeUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1253
{
"address": "text",
"city": "text",
"countryCode": "text",
"defaultReturnWarehouseUid": "text",
"defaultWarehouseUid": "text",
"defaultDeliveryWarehouseUid": "text",
"email": "text",
"externalId": "text",
"isActive": true,
"latitude": 1,
"longitude": 1,
"name": "text",
"phone": "text",
"postalCode": "text",
"purchaseNumberSeriesUid": "text",
"internalPurchaseNumberSeriesUid": "text",
"rmaOrderNumberSeriesUid": "text",
"customerLedgerNumberSeriesUid": "text",
"quicksaleCategoryUid": "text",
"receiptMessage": "text",
"emailReceiptMessage": "text",
"exchangenoteMessage": "text",
"exchangenoteValidDays": 1,
"salesPriceUid": "text",
"purchasePriceListUid": "text",
"appSettings": {
"hidePurchase": true,
"hideReceivement": true,
"enableUnlinkedPayments": true
},
"vatNumber": "text",
"voucherNumberSeriesUid": "text",
"hasWorkshop": true,
"organizationUid": "text",
"serviceNumberSeriesUid": "text",
"openingHours": {
"monday": "text",
"tuesday": "text",
"wednesday": "text",
"thursday": "text",
"friday": "text",
"saturday": "text",
"sunday": "text",
"note": "text"
},
"bankInfo": {
"accountNumber": "text",
"bankName": "text",
"iban": "text",
"swift": "text"
},
"websiteUrl": "text",
"invoiceFooterText": "text",
"labelComparisonPricelistUid": "text",
"enableStoreCashReconciliation": true,
"cashReconciliationCutOffTime": "00:00:00",
"logoAssetUid": "text"
}Example response
{
"address": "text",
"city": "text",
"countryCode": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"defaultWarehouseUid": "text",
"defaultReturnWarehouseUid": "text",
"defaultDeliveryWarehouseUid": "text",
"email": "text",
"externalId": "text",
"isActive": true,
"lastModifiedAt": "2026-01-01T00:00:00.000Z",
"latitude": 1,
"longitude": 1,
"name": "text",
"postalCode": "text",
"phone": "text",
"purchaseNumberSeriesUid": "text",
"internalPurchaseNumberSeriesUid": "text",
"rmaOrderNumberSeriesUid": "text",
"customerLedgerNumberSeriesUid": "text",
"quicksaleCategoryUid": "text",
"receiptMessage": "text",
"emailReceiptMessage": "text",
"exchangenoteMessage": "text",
"exchangenoteValidDays": 1,
"salesPriceUid": "text",
"purchasePriceListUid": "text",
"appSettings": {
"hidePurchase": true,
"hideReceivement": true,
"enableUnlinkedPayments": true
},
"storeUid": "text",
"vatNumber": "text",
"voucherNumberSeriesUid": "text",
"serviceNumberSeriesUid": "text",
"hasWorkShop": true,
"organizationUid": "text",
"availableExtensions": [
{
"extensionCode": "FLOWGIFTCARD",
"name": "text"
}
],
"openingHours": {
"monday": "text",
"tuesday": "text",
"wednesday": "text",
"thursday": "text",
"friday": "text",
"saturday": "text",
"sunday": "text",
"note": "text"
},
"bankInfo": {
"accountNumber": "text",
"bankName": "text",
"iban": "text",
"swift": "text"
},
"websiteUrl": "text",
"invoiceFooterText": "text",
"labelComparisonPricelistUid": "text",
"addresses": [
{
"storeAddressUid": "text",
"companyName": "text",
"vatNumber": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"type": "PURCHASE_INVOICE_ADDRESS",
"default": true,
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}
],
"enableStoreCashReconciliation": true,
"cashReconciliationCutOffTime": "00:00:00",
"logoAssetUid": "text"
}Deletes a store.
Required permissions: STORE
Access token recevied after user login with a deviceToken
Reference to a Store.
^[A-Za-z0-9-_]+Reference to a tenant.
^[A-Za-z0-9-_]+No Content
No content
DELETE /v2/tenants/{tenantUid}/stores/{storeUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No Content
No content
Get till information by token information
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Example response
NOTE: This field is deprecated. Printers should be defined on the device
^[A-Za-z0-9-_]+NOTE: This field is deprecated. Printers should be defined on the device
NOTE: This field is deprecated. Printers should be defined on the device
^[A-Za-z0-9-_]+Not Found
GET /v2/tenants/{tenantUid}/stores/{storeUid}/till HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"cashDrawer": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedAt": "2026-01-01T00:00:00.000Z",
"lastOrderUid": "text",
"lastOrderNumber": "text",
"name": "text",
"paymentTerminal": "NONE",
"settings": [
{
"key": "STRIPE_TERMINAL_ID",
"value": "text"
}
],
"tillUid": "text",
"tillNumber": 1,
"device": {
"deviceUid": "text",
"identifier": "text",
"name": "text"
}
}Get till status by using token information
Required permissions: SALES_ORDER,RETURN_ORDER,REPORTING
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Example response
Cash report for a till
The cash difference amount.
Calculation: (countedAmount + withdrawalAmount ) - (changeAmount + cashRevenueAmount)
After the till is closed the cash revenue will be calculated in this field
^[A-Za-z0-9-_]+GET /v2/tenants/{tenantUid}/stores/{storeUid}/till/status HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"bankdepositAmount": 1,
"bankdepositReference": "text",
"cashDifferenceAmount": 1,
"cashRevenueAmount": 1,
"cashreportUid": "text",
"changeAmount": 1,
"closedAt": "2026-01-01T00:00:00.000Z",
"closedByDisplayName": "text",
"comment": "text",
"countedAmount": 1,
"openAt": "2026-01-01T00:00:00.000Z",
"openByDisplayName": "text",
"status": "OPEN",
"withdrawalAmount": 1,
"cashDetailsAtOpen": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"cashDetailsAtClose": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
]
}Set a new till status by token information
Required permissions: SALES_ORDER,RETURN_ORDER
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+The amount that should be withdrawed from the till and deposited to night safe when the till is closed.
An optional reference to the bank deposit
When the till is opened this is the change amount. When the till is closed this is the counted amount
Example response
Cash report for a till
The cash difference amount.
Calculation: (countedAmount + withdrawalAmount ) - (changeAmount + cashRevenueAmount)
After the till is closed the cash revenue will be calculated in this field
^[A-Za-z0-9-_]+POST /v2/tenants/{tenantUid}/stores/{storeUid}/till/status HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 190
{
"bankdepositAmount": 1,
"bankdepositReference": "text",
"cashAmount": 1,
"status": "OPEN",
"cashDetails": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
]
}Example response
{
"bankdepositAmount": 1,
"bankdepositReference": "text",
"cashDifferenceAmount": 1,
"cashRevenueAmount": 1,
"cashreportUid": "text",
"changeAmount": 1,
"closedAt": "2026-01-01T00:00:00.000Z",
"closedByDisplayName": "text",
"comment": "text",
"countedAmount": 1,
"openAt": "2026-01-01T00:00:00.000Z",
"openByDisplayName": "text",
"status": "OPEN",
"withdrawalAmount": 1,
"cashDetailsAtOpen": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"cashDetailsAtClose": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
]
}List all cashreports for a store
Access token recevied after user login with a deviceToken
Reference to a Store.
^[A-Za-z0-9-_]+Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a specific page in a result set.
The number of items per page in a result set.
| ENUM | Description |
|---|---|
| ASC | Sort in ascending order |
| DESC | Sort in descending order |
Defines which field the resource list is sorted by.
Reference to a from-date.
Reference to a to-date.
Example response
GET /v2/tenants/{tenantUid}/stores/{storeUid}/cashreports HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"tillUid": "text",
"tillName": "text",
"tillNumber": 1,
"bankdepositAmount": 1,
"bankdepositReference": "text",
"cashDifferenceAmount": 1,
"cashRevenueAmount": 1,
"cashreportUid": "text",
"changeAmount": 1,
"closedAt": "2026-01-01T00:00:00.000Z",
"closedByDisplayName": "text",
"comment": "text",
"countedAmount": 1,
"openAt": "2026-01-01T00:00:00.000Z",
"openByDisplayName": "text",
"status": "OPEN",
"withdrawalAmount": 1,
"cashDetailsAtOpen": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"cashDetailsAtClose": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
]
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}List all visitor records for a list of stores
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+The number of items per page in a result set.
Reference to a specific page in a result set.
Defines which field the resource list is sorted by.
| ENUM | Description |
|---|---|
| ASC | Sort in ascending order |
| DESC | Sort in descending order |
Example response
POST /v2/tenants/{tenantUid}/stores/visitors HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 104
{
"fromDateTime": "2026-01-01T00:00:00.000Z",
"toDateTime": "2026-01-01T00:00:00.000Z",
"storeUids": [
"text"
]
}Example response
{
"items": [
{
"storeVisitorUid": "text",
"storeUid": "text",
"dateTime": "2026-01-01T00:00:00.000Z",
"visitorCount": 1
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}List store additional addresses.
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Defines which field the resource list is sorted by.
| ENUM | Description |
|---|---|
| ASC | Sort in ascending order |
| DESC | Sort in descending order |
Reference to a specific page in a result set.
The number of items per page in a result set.
Example response
GET /v2/tenants/{tenantUid}/stores/{storeUid}/addresses HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"storeAddressUid": "text",
"companyName": "text",
"vatNumber": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"type": "PURCHASE_INVOICE_ADDRESS",
"default": true,
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}Create new store address
Required permissions: STORE
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*Example response
^[A-Za-z0-9-_]+POST /v2/tenants/{tenantUid}/stores/{storeUid}/addresses HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 217
{
"type": "PURCHASE_INVOICE_ADDRESS",
"companyName": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"vatNumber": "text",
"storeAddressUid": "text",
"default": true
}Example response
{
"storeAddressUid": "text",
"companyName": "text",
"vatNumber": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"type": "PURCHASE_INVOICE_ADDRESS",
"default": true,
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}Get a store address
Required permissions: STORE
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Reference to a store address
Example response
^[A-Za-z0-9-_]+GET /v2/tenants/{tenantUid}/stores/{storeUid}/addresses/{storeAddressUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"storeAddressUid": "text",
"companyName": "text",
"vatNumber": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"type": "PURCHASE_INVOICE_ADDRESS",
"default": true,
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}Update a store address
Required permissions: STORE
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Reference to a store address
Example response
^[A-Za-z0-9-_]+PUT /v2/tenants/{tenantUid}/stores/{storeUid}/addresses/{storeAddressUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 158
{
"companyName": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"vatNumber": "text",
"default": true
}Example response
{
"storeAddressUid": "text",
"companyName": "text",
"vatNumber": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"type": "PURCHASE_INVOICE_ADDRESS",
"default": true,
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}Delete a store address
Required permissions: STORE
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Reference to a store address
No Content
No content
DELETE /v2/tenants/{tenantUid}/stores/{storeUid}/addresses/{storeAddressUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No Content
No content
List store cash reconciliations
Required permissions: TILL_OPERATION
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Reference to a specific page in a result set.
The number of items per page in a result set.
Defines which field the resource list is sorted by.
| ENUM | Description |
|---|---|
| ASC | Sort in ascending order |
| DESC | Sort in descending order |
Reconcilation date GTE
Reconciliation date LTE
Example response
GET /v2/tenants/{tenantUid}/stores/{storeUid}/cash-reconciliations HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"balance": 1,
"depositAmount": 1,
"deposits": [
{
"cashDepositUid": "text",
"depositNumber": "text",
"amount": 1,
"depositedAt": "2026-01-01T00:00:00.000Z",
"denominations": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"reconciliations": [
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"depositAmount": 1,
"status": "IN_PROGRESS"
}
]
}
],
"status": "IN_PROGRESS",
"note": "text",
"tenantUserUid": "text",
"tenantUserDisplayName": "text",
"review": {
"reviewedAt": "2026-01-01T00:00:00.000Z",
"approved": true,
"note": "text",
"tenantUserUid": "text",
"tenantUserDisplayName": "text"
},
"cashReports": [
{
"tillUid": "text",
"tillName": "text",
"tillNumber": 1,
"bankdepositAmount": 1,
"bankdepositReference": "text",
"cashDifferenceAmount": 1,
"cashRevenueAmount": 1,
"cashreportUid": "text",
"changeAmount": 1,
"closedAt": "2026-01-01T00:00:00.000Z",
"closedByDisplayName": "text",
"comment": "text",
"countedAmount": 1,
"openAt": "2026-01-01T00:00:00.000Z",
"openByDisplayName": "text",
"status": "OPEN",
"withdrawalAmount": 1,
"cashDetailsAtOpen": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"cashDetailsAtClose": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
]
}
],
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}Create new cash reconciliation for store
Required permissions: TILL_OPERATION
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*^[A-Za-z0-9-_]+Example response
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+POST /v2/tenants/{tenantUid}/stores/{storeUid}/cash-reconciliations HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 324
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"tenantUserUid": "text",
"depositAmount": 1,
"status": "IN_PROGRESS",
"note": "text",
"cashReports": [
{
"tillUid": "text",
"cashReportUid": "text"
}
],
"review": {
"tenantUserUid": "text",
"reviewedAt": "2026-01-01T00:00:00.000Z",
"approved": true,
"note": "text",
"pin": "text"
}
}Example response
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"balance": 1,
"depositAmount": 1,
"deposits": [
{
"cashDepositUid": "text",
"depositNumber": "text",
"amount": 1,
"depositedAt": "2026-01-01T00:00:00.000Z",
"denominations": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"reconciliations": [
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"depositAmount": 1,
"status": "IN_PROGRESS"
}
]
}
],
"status": "IN_PROGRESS",
"note": "text",
"tenantUserUid": "text",
"tenantUserDisplayName": "text",
"review": {
"reviewedAt": "2026-01-01T00:00:00.000Z",
"approved": true,
"note": "text",
"tenantUserUid": "text",
"tenantUserDisplayName": "text"
},
"cashReports": [
{
"tillUid": "text",
"tillName": "text",
"tillNumber": 1,
"bankdepositAmount": 1,
"bankdepositReference": "text",
"cashDifferenceAmount": 1,
"cashRevenueAmount": 1,
"cashreportUid": "text",
"changeAmount": 1,
"closedAt": "2026-01-01T00:00:00.000Z",
"closedByDisplayName": "text",
"comment": "text",
"countedAmount": 1,
"openAt": "2026-01-01T00:00:00.000Z",
"openByDisplayName": "text",
"status": "OPEN",
"withdrawalAmount": 1,
"cashDetailsAtOpen": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"cashDetailsAtClose": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
]
}
],
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}Get store cash reconciliation
Get a store cash reconciliation by its UID.
Required permissions: TILL_OPERATION
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Reference to a store cash reconciliation
^[A-Za-z0-9-_]+Example response
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+GET /v2/tenants/{tenantUid}/stores/{storeUid}/cash-reconciliations/{storeCashReconciliationUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"balance": 1,
"depositAmount": 1,
"deposits": [
{
"cashDepositUid": "text",
"depositNumber": "text",
"amount": 1,
"depositedAt": "2026-01-01T00:00:00.000Z",
"denominations": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"reconciliations": [
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"depositAmount": 1,
"status": "IN_PROGRESS"
}
]
}
],
"status": "IN_PROGRESS",
"note": "text",
"tenantUserUid": "text",
"tenantUserDisplayName": "text",
"review": {
"reviewedAt": "2026-01-01T00:00:00.000Z",
"approved": true,
"note": "text",
"tenantUserUid": "text",
"tenantUserDisplayName": "text"
},
"cashReports": [
{
"tillUid": "text",
"tillName": "text",
"tillNumber": 1,
"bankdepositAmount": 1,
"bankdepositReference": "text",
"cashDifferenceAmount": 1,
"cashRevenueAmount": 1,
"cashreportUid": "text",
"changeAmount": 1,
"closedAt": "2026-01-01T00:00:00.000Z",
"closedByDisplayName": "text",
"comment": "text",
"countedAmount": 1,
"openAt": "2026-01-01T00:00:00.000Z",
"openByDisplayName": "text",
"status": "OPEN",
"withdrawalAmount": 1,
"cashDetailsAtOpen": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"cashDetailsAtClose": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
]
}
],
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}Update store cash reconciliation
Update a store cash reconciliation
Required permissions: TILL_OPERATION
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Reference to a store cash reconciliation
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*Example response
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]+PUT /v2/tenants/{tenantUid}/stores/{storeUid}/cash-reconciliations/{storeCashReconciliationUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 288
{
"reconciliationDate": "2026-01-01",
"tenantUserUid": "text",
"depositAmount": 1,
"status": "IN_PROGRESS",
"note": "text",
"cashReports": [
{
"tillUid": "text",
"cashReportUid": "text"
}
],
"review": {
"tenantUserUid": "text",
"reviewedAt": "2026-01-01T00:00:00.000Z",
"approved": true,
"note": "text",
"pin": "text"
}
}Example response
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"balance": 1,
"depositAmount": 1,
"deposits": [
{
"cashDepositUid": "text",
"depositNumber": "text",
"amount": 1,
"depositedAt": "2026-01-01T00:00:00.000Z",
"denominations": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"reconciliations": [
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"depositAmount": 1,
"status": "IN_PROGRESS"
}
]
}
],
"status": "IN_PROGRESS",
"note": "text",
"tenantUserUid": "text",
"tenantUserDisplayName": "text",
"review": {
"reviewedAt": "2026-01-01T00:00:00.000Z",
"approved": true,
"note": "text",
"tenantUserUid": "text",
"tenantUserDisplayName": "text"
},
"cashReports": [
{
"tillUid": "text",
"tillName": "text",
"tillNumber": 1,
"bankdepositAmount": 1,
"bankdepositReference": "text",
"cashDifferenceAmount": 1,
"cashRevenueAmount": 1,
"cashreportUid": "text",
"changeAmount": 1,
"closedAt": "2026-01-01T00:00:00.000Z",
"closedByDisplayName": "text",
"comment": "text",
"countedAmount": 1,
"openAt": "2026-01-01T00:00:00.000Z",
"openByDisplayName": "text",
"status": "OPEN",
"withdrawalAmount": 1,
"cashDetailsAtOpen": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"cashDetailsAtClose": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
]
}
],
"createdBy": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z"
}Delete store cash reconciliation
Delete a store cash reconciliation record.
Required permissions: TILL_OPERATION
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Reference to a store cash reconciliation
^[A-Za-z0-9-_]+No Content
No content
DELETE /v2/tenants/{tenantUid}/stores/{storeUid}/cash-reconciliations/{storeCashReconciliationUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No Content
No content
Create cash deposit
Create cash deposit.
Required permissions: TILL_OPERATION
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Reference to a store cash reconciliation
^[A-Za-z0-9-_]+^[A-Za-z0-9-_]*Example response
^[A-Za-z0-9-_]+POST /v2/tenants/{tenantUid}/stores/{storeUid}/cash-reconciliations/{storeCashReconciliationUid}/cashdeposits HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 208
{
"depositNumber": "text",
"amount": 1,
"depositedAt": "2026-01-01T00:00:00.000Z",
"denominations": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"cashDepositUid": "text"
}Example response
{
"cashDepositUid": "text",
"depositNumber": "text",
"amount": 1,
"depositedAt": "2026-01-01T00:00:00.000Z",
"denominations": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"reconciliations": [
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"depositAmount": 1,
"status": "IN_PROGRESS"
}
]
}Update cash deposit
Update cash deposit.
Required permissions: TILL_OPERATION
Access token recevied after user login with a deviceToken
Reference to a tenant.
^[A-Za-z0-9-_]+Reference to a Store.
^[A-Za-z0-9-_]+Reference to a store cash reconciliation
^[A-Za-z0-9-_]+Reference to a cash deposit
^[A-Za-z0-9-_]+Example response
^[A-Za-z0-9-_]+PUT /v2/tenants/{tenantUid}/stores/{storeUid}/cash-reconciliations/{storeCashReconciliationUid}/cashdeposits/{cashDepositUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 184
{
"depositNumber": "text",
"amount": 1,
"depositedAt": "2026-01-01T00:00:00.000Z",
"denominations": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
]
}Example response
{
"cashDepositUid": "text",
"depositNumber": "text",
"amount": 1,
"depositedAt": "2026-01-01T00:00:00.000Z",
"denominations": [
{
"currencyCode": "text",
"denomination": 1,
"material": "COIN",
"quantityCounted": 1,
"amount": 1
}
],
"reconciliations": [
{
"storeCashReconciliationUid": "text",
"reconciliationDate": "2026-01-01",
"depositAmount": 1,
"status": "IN_PROGRESS"
}
]
}Last updated