Maximum Subscriptions Exceeded Query

The following example shows an unsuccessful query for usage consumption data where the number of subscriptions in the request exceeds the maximum allowed.

This example requests usage consumption data for more than 10 subscriptions, resulting in an error response.
Method
POST
Headers
"Accept":"application/json;charset=utf-8"
"Content-Type":"application/json;charset=utf-8"
URL
/tmf-api/usageConsumption/v4/queryUsageConsumption
Request Body
{
    "searchCriteria": {
        "service": [
            {
                "id": "0-1-5-1"
            },
            {
                "id": "0-1-5-2"
            },
            {
                "id": "0-1-5-3"
            },
            {
                "id": "0-1-5-4"
            },
            {
                "id": "0-1-5-5"
            },
            {
                "id": "0-1-5-6"
            },
            {
                "id": "0-1-5-7"
            },
            {
                "id": "0-1-5-8"
            },
            {
                "id": "0-1-5-9"
            },
            {
                "id": "0-1-5-10"
            },
            {
                "id": "0-1-5-11"
            }
        ]
    }
}
Response Code
400
Response Body
"BAD REQUEST: IDs provided exceeded limit of 10"