# lol.dids.manage.verify

> Published by [ngerakines.me](https://lexicon.garden/identity/did:plc:cbkjy5n7bk3ax2wplmtjofq2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/lol.dids.manage.verify)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/lol.dids.manage.verify/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/lol.dids.manage.verify/examples)

## Definitions

### `lol.dids.manage.verify`

**Type**: `procedure`

Force an immediate verification pass over a domain's DNS rather than waiting for the poller. Rate-limited to one call per thirty seconds per domain.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `domain` | `string` | Yes | The registered hostname. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `checks` | `array` | Yes |  |
| `status` | `ref` → `lol.dids.defs#domainStatus` | Yes |  |

#### Errors

- **DomainNotFound**: No registration for that domain belongs to the caller.
- **RateLimitExceeded**: One verification per thirty seconds per domain.

## Raw Schema

```json
{
  "id": "lol.dids.manage.verify",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "domain"
          ],
          "properties": {
            "domain": {
              "type": "string",
              "maxLength": 253,
              "description": "The registered hostname."
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "DomainNotFound",
          "description": "No registration for that domain belongs to the caller."
        },
        {
          "name": "RateLimitExceeded",
          "description": "One verification per thirty seconds per domain."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "status",
            "checks"
          ],
          "properties": {
            "checks": {
              "type": "array",
              "items": {
                "ref": "lol.dids.defs#verificationCheck",
                "type": "ref"
              }
            },
            "status": {
              "ref": "lol.dids.defs#domainStatus",
              "type": "ref"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Force an immediate verification pass over a domain's DNS rather than waiting for the poller. Rate-limited to one call per thirty seconds per domain."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
