GET api/superadmin/settings/api-keys

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ApiKeyInfo
NameDescriptionTypeAdditional information
Id

integer

None.

KeyName

string

None.

KeyType

string

None.

MaskedKey

string

None.

IsActive

boolean

None.

DateCreated

date

None.

LastModified

date

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "KeyName": "sample string 2",
    "KeyType": "sample string 3",
    "MaskedKey": "sample string 4",
    "IsActive": true,
    "DateCreated": "2026-03-26T03:50:42.8741204+02:00",
    "LastModified": "2026-03-26T03:50:42.8741204+02:00",
    "Description": "sample string 7"
  },
  {
    "Id": 1,
    "KeyName": "sample string 2",
    "KeyType": "sample string 3",
    "MaskedKey": "sample string 4",
    "IsActive": true,
    "DateCreated": "2026-03-26T03:50:42.8741204+02:00",
    "LastModified": "2026-03-26T03:50:42.8741204+02:00",
    "Description": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfApiKeyInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCareAPI.Models">
  <ApiKeyInfo>
    <DateCreated>2026-03-26T03:50:42.8741204+02:00</DateCreated>
    <Description>sample string 7</Description>
    <Id>1</Id>
    <IsActive>true</IsActive>
    <KeyName>sample string 2</KeyName>
    <KeyType>sample string 3</KeyType>
    <LastModified>2026-03-26T03:50:42.8741204+02:00</LastModified>
    <MaskedKey>sample string 4</MaskedKey>
  </ApiKeyInfo>
  <ApiKeyInfo>
    <DateCreated>2026-03-26T03:50:42.8741204+02:00</DateCreated>
    <Description>sample string 7</Description>
    <Id>1</Id>
    <IsActive>true</IsActive>
    <KeyName>sample string 2</KeyName>
    <KeyType>sample string 3</KeyType>
    <LastModified>2026-03-26T03:50:42.8741204+02:00</LastModified>
    <MaskedKey>sample string 4</MaskedKey>
  </ApiKeyInfo>
</ArrayOfApiKeyInfo>