Config
Config
List all countries.
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 |
GET /v2/countries HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"code": "text",
"countryUid": "text",
"createdAt": "2025-07-30T18:14:22.001Z",
"currency": "text",
"lastModifiedAt": "2025-07-30T18:14:22.001Z",
"name": "text",
"phonePrefix": "text",
"languageCode": "text"
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}
Get details for a country
Reference to a Country.
^[A-Za-z0-9-_]+
GET /v2/countries/{countryUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"code": "text",
"countryUid": "text",
"createdAt": "2025-07-30T18:14:22.001Z",
"currency": "text",
"lastModifiedAt": "2025-07-30T18:14:22.001Z",
"name": "text",
"phonePrefix": "text",
"languageCode": "text"
}
Get a list of current VAT codes.
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 |
GET /v2/vat HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"createdAt": "2025-07-30T18:14:22.001Z",
"fromDate": "2025-07-30T18:14:22.001Z",
"lastModifiedAt": "2025-07-30T18:14:22.001Z",
"name": "text",
"rate": 1,
"vatCodeUid": "text",
"countryCode": "text"
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}
Get a list of current VAT codes for a specific country code.
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 |
GET /v2/countries/{countryCode}/vat HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"createdAt": "2025-07-30T18:14:22.001Z",
"fromDate": "2025-07-30T18:14:22.001Z",
"lastModifiedAt": "2025-07-30T18:14:22.001Z",
"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"
]
}
}
]
}
List available label formats. Label sizes are in mm.
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"
}
]
}
Was this helpful?