GET
/
v1
/
products
curl --request GET \
  --url https://api.withflex.com/v1/products \
  --header 'Authorization: Bearer <token>'
{
  "products": [
    {
      "product_id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "created_at": "<string>",
      "visit_type": "cbtSleep",
      "active": true,
      "upc_code": "<string>",
      "gtin": "<string>",
      "reference_gtin": "<string>",
      "hsa_fsa_eligibility": "not_eligible",
      "test_mode": true,
      "metadata": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer | null
Required range: x >= 1
offset
integer | null
Required range: x >= 0
starting_after
string
ending_before
string
active
boolean | null

Response

200
application/json

The response is of type object.