Query parameters

  • id string

    Requires access right: SCOPE

  • deleted boolean

    This property is used to mark an entity as deleted / archived | Requires access right: SCOPE | Default value: false

  • order integer

    Requires access right: SCOPE

  • name string

    Requires access right: SCOPE

  • Requires access right: SCOPE

  • text to search for in the list

  • name of the order field

  • sorting mode

    Values are DESC or ASC.

  • page integer

    page of the list

    Default value is 0.

  • pageSize integer

    number of entries for each page

    Minimum value is 1, maximum value is 200. Default value is 50.

  • returns the number of pages available as a header if this is set

  • build id of the client

  • package id of the client

Responses

GET /api/cp/self_service_membership/item
curl \
 --request GET 'https://replace-with-own-host.iw-erp.de/api/cp/self_service_membership/item' \
 --header "x-session-token: $API_KEY"
Response examples (200)
[
  {
    "id": 42,
    "products": [
      {
        "id": 42,
        "name": "string",
        "description": "string",
        "fixed_price": 42.0,
        "fixed_price_base_unit": 42.0,
        "billing_type": {
          "deleted": true
        },
        "recurrence": {
          "id": 42,
          "name": "string",
          "once": true,
          "allow_partial_on_eq_start_billing": true,
          "date_string": "string",
          "tolerance": 42.0,
          "deleted": true,
          "rounding_steps": 42,
          "month_factor": 42
        },
        "deleted": true,
        "sub_self_service_add": true,
        "sub_self_service_add_fixed_price": 42.0,
        "price_is_brutto": true,
        "sku": "string",
        "barcode": "string",
        "is_preferred": true,
        "is_default": true,
        "is_discount": true,
        "is_free": true,
        "is_passive": true,
        "is_global": true,
        "ucats": [
          {
            "id": 42,
            "category_type": "string",
            "name": "string",
            "deleted": true,
            "image_url": "string"
          }
        ],
        "order": 42
      }
    ],
    "categories": [
      {
        "id": 42,
        "name": "string",
        "deleted": true,
        "unified_category": {
          "id": 42,
          "category_type": "string",
          "name": "string",
          "deleted": true,
          "image_url": "string"
        },
        "image_url": "string",
        "order": 42
      }
    ],
    "required_item": {},
    "disable_for_flat_list": true,
    "require_attachment": true,
    "name": "string",
    "deleted": true,
    "unified_category": {
      "id": 42,
      "category_type": "string",
      "name": "string",
      "deleted": true,
      "image_url": "string"
    },
    "image_url": "string",
    "order": 42
  }
]