---
title: "Credentials"
---

When viewing saved credentials, you can use the keywords in this section to ((search|search credentials)) and filter.

## Credential fields

### Credential ID {#credentials-ID}

The ID field is the unique identifier for a given credential, written as a UUID. This field is searched using the syntax `id:<uuid>`.

```plaintext
id:cdb084f9-4811-445c-8ea1-3ea9cf88d536
```

### Credential name {#credentials-name}

The credential name can be searched using the syntax `name:<text>`.

```plaintext
name:"AWS read-only account"
```
```plaintext
name:"Miradore API key"
```

### Credential type {#credentials-type}

The credential type can be searched using the syntax `name:<text>`.

```plaintext
type:aws_access_secret
```
```plaintext
type:miradore_api_key_v1
```

### Credential global property {#credentials-global}

The global property describes the level of access for all organizations. If a credential is global, all organizations have access to it. The global property can be searched using the syntax `global:<boolean>`.

The term is a boolean value:

- `true`, `t`, `1`, and `yes` represent _true_
- `false`, `f`, `0`, and `no` represent _false_

```plaintext
global:true
```
```plaintext
global:0
```

### Credential timestamps {#credentials-timestamps}

Credential timestamp fields (`created_at` and `last_used_at`) can be searched using the syntax:
- `created_at:<term>`
- `last_used_at:<term>`

The term supports the standard runZero [time comparison syntax][time].

```plaintext
created_at:<3days
```
```plaintext
created_at:>2019-08-01
```
```plaintext
created_at:>8/1/2019
```
```plaintext
created_at:<1week
```
```plaintext
created_at:<2months
```
```plaintext
last_used_at:<1year
```
```plaintext
last_used_at:>2weeks
```
```plaintext
last_used_at:<30minutes
```
```plaintext
last_used_at:>1year
```
```plaintext
last_used_at:<12hours
```
```plaintext
last_used_at:0
```

### Credential created by {#credentials-creator}

The created_by_email holds the email address for the user that created the credential. It can be searched using the syntax `created_by_email:<term>`.

```plaintext
created_by_email:user@example.com
```
