POST api/RedisCache/RemoveAllCacheByKeyName
Request Information
URI Parameters
None.
Body Parameters
RedisCacheDTOName | Description | Type | Additional information |
---|---|---|---|
KeyName | string |
String length: inclusive between 0 and 8000 |
|
UserName | string |
String length: inclusive between 0 and 100 |
|
Password | string |
String length: inclusive between 0 and 50 |
Request Formats
application/json, text/json
Sample:
{ "KeyName": "sample string 1", "UserName": "sample string 2", "Password": "sample string 3" }
application/xml, text/xml
Sample:
<RedisCacheDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO"> <KeyName>sample string 1</KeyName> <Password>sample string 3</Password> <UserName>sample string 2</UserName> </RedisCacheDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AsapResponseOfRedisCacheDTOName | Description | Type | Additional information |
---|---|---|---|
isSuccess | boolean |
None. |
|
message | string |
None. |
|
jsonObj | RedisCacheDTO |
None. |
|
totalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "isSuccess": true, "message": "sample string 2", "jsonObj": { "KeyName": "sample string 1", "UserName": "sample string 2", "Password": "sample string 3" }, "totalCount": 3 }
application/xml, text/xml
Sample:
<AsapResponseOfRedisCacheDTO9DQd0Pqc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common"> <isSuccess>true</isSuccess> <jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO"> <d2p1:KeyName>sample string 1</d2p1:KeyName> <d2p1:Password>sample string 3</d2p1:Password> <d2p1:UserName>sample string 2</d2p1:UserName> </jsonObj> <message>sample string 2</message> <totalCount>3</totalCount> </AsapResponseOfRedisCacheDTO9DQd0Pqc>