Get list of articles using advanced filters

GET /api-v1/article/advanced

Headers

  • TARGET-ORGANIZATION-ID integer(int32)

    ID of organization, for which the operation must be performed

  • WEAL-TOKEN string Required

    API token (can be retrieved from account settings)

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • archived boolean
    • articleId string
    • articleIdName object
      Hide articleIdName attributes Show articleIdName attributes object
      • de string
      • en string
      • fr string
      • it string
    • categoryId integer
    • categoryName string
    • creatorContactId integer
    • description object
      Hide description attributes Show description attributes object
      • de string
      • en string
      • fr string
      • it string
    • ean string
    • endDate string(date-time)
    • id integer
    • measurement string

      Values are UNIT, ML, DL, L, HL, G, KG, T, H, M, M_2, M_3, KM, or DAY.

    • name object
      Hide name attributes Show name attributes object
      • de string
      • en string
      • fr string
      • it string
    • quantity number
    • startDate string(date-time)
    • type string

      Values are PRODUCT, SERVICE, or BUNDLE.

    • unitCost number
    • unitPrice number
    • vatRateId integer
    • weightKg number
  • 400

    400 Bad Request

  • 401

    401 Unauthorized

  • 403

    403 Access Denied

  • 404

    404 Not Found

  • 500

    500 Internal Server Error

GET /api-v1/article/advanced
curl \
 --request GET 'https://wyzio.app/api-v1/article/advanced' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "archived": true,
    "articleId": "string",
    "articleIdName": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "categoryId": 42,
    "categoryName": "string",
    "creatorContactId": 42,
    "description": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "ean": "string",
    "endDate": "2025-05-04T09:42:00Z",
    "id": 42,
    "measurement": "UNIT",
    "name": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "quantity": 42.0,
    "startDate": "2025-05-04T09:42:00Z",
    "type": "PRODUCT",
    "unitCost": 42.0,
    "unitPrice": 42.0,
    "vatRateId": 42,
    "weightKg": 42.0
  }
]