Delete theme for a locale

delete

/oaa-drss/v1/themes/{locale}

Delete all the properties for the given locale

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

204 Response

Theme deleted successfully

401 Response

Unauthorized Access

404 Response

Theme not found for the given locale

500 Response

Internal server error
Back to Top

Examples

The following example shows a sample request and response for deleting a theme for a locale.

cURL Command to Delete a Theme For a Locale in JSON Format

curl --location --request DELETE '<DRSS>/v1/themes/en_US' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'

Sample Response in JSON Format

No response is returned except 204 No Content.

Back to Top