Get total count of articles with contact language

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://restapi.wyzio.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Wyzio MCP server": {
    "url": "https://restapi.wyzio.com/mcp"
  }
}

Close
GET /api-v1/article/contact-lang/overall

Returns the total number of articles matching the specified filters.

Localization is performed using the contact's default language.

Headers

  • WEAL-TOKEN Required

    API token (can be retrieved from account settings)

  • TARGET-ORGANIZATION-ID

    ID of organization, for which the operation must be performed

Query parameters

  • contactId string(string)

    Contact identifier used to determine localization language

  • id string

    Unique identifier of the article

    Multi-value supported. Example: value1;value2

  • type string

    Type of the article

    Values are PRODUCT, SERVICE, or BUNDLE.

  • articleId string

    Identifier of the article

  • name string

    Article's primary name translation

  • description string

    Article's detailed description translation

  • categoryId string

    Unique identifier of the article's category

    Multi-value supported. Example: value1;value2

  • categoryName string

    Name of the category

  • measurement string

    Article's measurement type

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

  • unitCost string

    Cost per unitSupports comparison operators:

    • Range ( .. )
    • Greater than ( > )
    • Greater than or equal ( >= )
    • Less than ( < )
    • Less than or equal ( <= )
    • Not equal ( <> )

    Examples:

    • <=100.00
    • >=100.00
    • <>100.00
    • 100.00..200.00

    Use <>0 to return only records where the selected amount is not equal to zero.

  • unitPrice string

    Article's unit priceSupports comparison operators:

    • Range ( .. )
    • Greater than ( > )
    • Greater than or equal ( >= )
    • Less than ( < )
    • Less than or equal ( <= )
    • Not equal ( <> )

    Examples:

    • <=100.00
    • >=100.00
    • <>100.00
    • 100.00..200.00

    Use <>0 to return only records where the selected amount is not equal to zero.

  • vatRateId integer(int64)

    VAT rate identifier

  • archived boolean

    Is the status of the article archived?

  • ean string

    Article's EAN code

  • quantity number

    Quantity of the article. Applicable only when articleType = PRODUCT

  • startDate string

    Start date for the article validitySupports comparison operators:

    • Range ( .. )
    • Greater than ( > )
    • Greater than or equal ( >= )
    • Less than ( < )
    • Less than or equal ( <= )
    • Not equal ( <> )

    Examples:

    • 01/01/2026..31/12/2026
    • >=01/01/2026
    • <=01/01/2026
    • <>01/01/2026

    Use <>01/01/2026 to return only records where the selected date is not equal to the filter date.

  • endDate string

    End date for the article validitySupports comparison operators:

    • Range ( .. )
    • Greater than ( > )
    • Greater than or equal ( >= )
    • Less than ( < )
    • Less than or equal ( <= )
    • Not equal ( <> )

    Examples:

    • 01/01/2026..31/12/2026
    • >=01/01/2026
    • <=01/01/2026
    • <>01/01/2026

    Use <>01/01/2026 to return only records where the selected date is not equal to the filter date.

  • weightKg number

    Weight of the article in Kg. Applicable only when articleType = PRODUCT

Responses

  • 200 application/json

    OK

  • 400

    400 Bad Request

  • 401

    401 Unauthorized

  • 403

    403 Access Denied

  • 404

    404 Not Found

  • 500

    500 Internal Server Error

GET /api-v1/article/contact-lang/overall
curl \
 --request GET 'https://wyzio.app/api-v1/article/contact-lang/overall'
Response examples (200)
42