PagedResult

Field Type Description
results [company.VATChange] Array of company.VATChange
next Dictionary? Nullable. The query parameters you need to request the following results. Is null when there are no results left

Examples

Request

When used inside a request.

Example 1

{
    "results": [
        {
            "product_id": 11,
            "product_price_id": 12,
            "product_option_id": 16,
            "percentage": 9.67,
            "method": "delivery",
            "start_date": "2019-01-31"
        },
        {
            "product_id": 11,
            "product_price_id": 13,
            "product_option_id": 17,
            "percentage": 9.67,
            "method": "delivery",
            "start_date": "2019-01-31"
        },
        {
            "product_id": 16,
            "product_price_id": 10,
            "product_option_id": 16,
            "percentage": 9.67,
            "method": "delivery",
            "start_date": "2019-01-31"
        }
    ],
    "next": {
        "product_id": 15,
        "product_price_id": 11,
        "product_option_id": 14,
        "before_id": 15,
        "after_id": 18,
        "sort": "ascending",
        "limit": 13
    }
}

Response

When returned in a response.

Example 1

{
    "results": [
        {
            "product_id": 18,
            "product_price_id": 11,
            "product_option_id": 19,
            "percentage": 9.67,
            "method": "delivery",
            "start_date": "2019-01-31",
            "id": 17
        },
        {
            "product_id": 10,
            "product_price_id": 12,
            "product_option_id": 18,
            "percentage": 9.67,
            "method": "delivery",
            "start_date": "2019-01-31",
            "id": 19
        },
        {
            "product_id": 14,
            "product_price_id": 11,
            "product_option_id": 13,
            "percentage": 9.67,
            "method": "delivery",
            "start_date": "2019-01-31",
            "id": 11
        }
    ],
    "next": {
        "product_id": 10,
        "product_price_id": 12,
        "product_option_id": 14,
        "before_id": 12,
        "after_id": 18,
        "sort": "ascending",
        "limit": 17
    }
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.6.0 stable