Skip to main content
GET
/
price-lists
Get all price lists
curl --request GET \
  --url https://api.fabric.inc/v3/price-lists \
  --header 'Authorization: Bearer <token>' \
  --header 'x-fabric-tenant-id: <x-fabric-tenant-id>'
{
  "query": {
    "size": 10,
    "offset": 10,
    "count": 50
  },
  "data": [
    {
      "id": 1000003,
      "name": "US price list",
      "isDefault": false,
      "currency": "USD",
      "channelId": "12",
      "startAt": "2021-05-04T09:23:51.459Z",
      "endAt": "2021-06-09T09:23:51.459Z",
      "createdAt": "2019-08-20T14:15:22.000Z",
      "updatedAt": "2019-08-20T14:15:22.000Z",
      "isDeleted": false
    }
  ]
}

Authorizations

Authorization
string
header
required

Headers

x-fabric-tenant-id
string
required
Required string length: 24
x-fabric-channel-id
string
Example:
x-client-id
string
x-fabric-request-id
string
Example:

Query Parameters

size
integer
default:10
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0
Example:
sort
enum<string>
default:-updatedAt
Available options:
-updatedAt,
+updatedAt,
-isDefault,
+isDefault,
-id,
+id
status
enum<string>
Available options:
ACTIVE
Example:
name
string
Example:
isDefault
boolean
Example:

Response

query
object
data
object[]