Disallow Cookie Base Cache
This setting is available in dynamic(aksela) resource type.
Method | URL |
---|---|
PUT | https://cloud.medianova.com/api/v1/cdn/{organization_uuid}/resource/{resource_id} |
Parameters | Description | Type | Required |
---|---|---|---|
organization_uuid | The created organization in Medianova Cloud Panel unit ID value. Path parameter. | String | Yes |
resource_uuid | The created resource in Medianova Cloud Panel unit ID value. Path parameter. | String | Yes |
cookie_base_cache_status | The values of the status_qs must be any of the; “true”, “false”. | String | Yes |
cookie_base_cache | If cookie_base_cache_status is true, cookie_base_cache is entered. | Object | Yes |
cookie_base_cache.key | If cookie_base_cache_status is true, cookie_base_cache.key is entered. | String | Yes |
cookie_base_cache.value | If cookie_base_cache_status is true, cookie_base_cache.value is entered. | String | Yes |
Payload
{
"resource_uuid": "****-****-****-*****",
"cookie_base_cache_status": true,
"cookie_base_cache": [
{
"key": "key1",
"value": "value1"
},
{
"key": "key2",
"value": "value2"
},
{
"key": "key3",
"value": "value3"
}
]
}