deleteCache
deleteCache
application/json
Request Body required
cacheNames string[]
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
{
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /cache/clear
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/communications/cache/clear' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"cacheNames": [
"string"
]
}'
python / requests
curl -L -X POST '/communications/cache/clear' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"cacheNames": [
"string"
]
}'
go / native
curl -L -X POST '/communications/cache/clear' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"cacheNames": [
"string"
]
}'
nodejs / axios
curl -L -X POST '/communications/cache/clear' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"cacheNames": [
"string"
]
}'
ruby / Net::HTTP
curl -L -X POST '/communications/cache/clear' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"cacheNames": [
"string"
]
}'
csharp / RestSharp
curl -L -X POST '/communications/cache/clear' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"cacheNames": [
"string"
]
}'
php / cURL
curl -L -X POST '/communications/cache/clear' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"cacheNames": [
"string"
]
}'
java / OkHttp
curl -L -X POST '/communications/cache/clear' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"cacheNames": [
"string"
]
}'
powershell / RestMethod
curl -L -X POST '/communications/cache/clear' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"cacheNames": [
"string"
]
}'