DELETE api/superadmin/settings/api-keys/{keyId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
keyId

integer

Required

Body Parameters

None.

Response Information

Resource Description

ApiKeyResult
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

KeyId

integer

None.

KeyName

string

None.

MaskedKey

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "KeyId": 3,
  "KeyName": "sample string 4",
  "MaskedKey": "sample string 5"
}

application/xml, text/xml

Sample:
<ApiKeyResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCareAPI.Models">
  <KeyId>3</KeyId>
  <KeyName>sample string 4</KeyName>
  <MaskedKey>sample string 5</MaskedKey>
  <Message>sample string 2</Message>
  <Success>true</Success>
</ApiKeyResult>