Config
Access token recevied after user login with a deviceToken
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/countries HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"code": "text",
"countryUid": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"currency": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z",
"name": "text",
"phonePrefix": "text",
"languageCode": "text"
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}Access token recevied after user login with a deviceToken
Reference to a Country.
^[A-Za-z0-9-_]+Example response
^[A-Za-z0-9-_]+ISO-4217 representation of currency code
Country phone prefix in format "+nnn"
GET /v2/countries/{countryUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"code": "text",
"countryUid": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"currency": "text",
"lastModifiedAt": "2026-01-01T00:00:00.000Z",
"name": "text",
"phonePrefix": "text",
"languageCode": "text"
}Access token recevied after user login with a deviceToken
Filter by country
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/vat HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"createdAt": "2026-01-01T00:00:00.000Z",
"fromDate": "2026-01-01T00:00:00.000Z",
"lastModifiedAt": "2026-01-01T00:00:00.000Z",
"name": "text",
"rate": 1,
"vatCodeUid": "text",
"countryCode": "text"
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}Access token recevied after user login with a deviceToken
countryCode
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/countries/{countryCode}/vat HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"createdAt": "2026-01-01T00:00:00.000Z",
"fromDate": "2026-01-01T00:00:00.000Z",
"lastModifiedAt": "2026-01-01T00:00:00.000Z",
"name": "text",
"rate": 1,
"vatCodeUid": "text",
"countryCode": "text"
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}List all available currencies
GET /v2/metadata/currencies HTTP/1.1
Host: api.flowretail.com
Accept: */*
List all available currencies
{
"items": [
{
"currencyCode": "text",
"name": "text",
"denominations": {
"coins": [
"text"
],
"notes": [
"text"
]
}
}
]
}Access token recevied after user login with a deviceToken
Example response
GET /v2/metadata/labels HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"key": "40X50_BARCODE_NAME_SKU",
"name": "text",
"size": "40x50"
}
]
}Last updated