# blog.pckt.domain.verify

> Published by [pckt.blog](https://lexicon.garden/identity/did:plc:revjuqmkvrw6fnkxppqtszpv)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.domain.verify)
- [Documentation](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.domain.verify/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:revjuqmkvrw6fnkxppqtszpv/blog.pckt.domain.verify/examples)

## Definitions

### `blog.pckt.domain.verify`

**Type**: `procedure`

Verify DNS for the publication's custom domain. Checks the CNAME (or A-record fallback for apex) and the TXT verification record, then requests an SSL certificate.

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `message` | `string` | Yes |  |
| `verified` | `boolean` | Yes |  |

#### Errors

- **BlogNotFound**
- **NoDomainConfigured**
- **VerificationFailed**

## Raw Schema

```json
{
  "id": "blog.pckt.domain.verify",
  "defs": {
    "main": {
      "type": "procedure",
      "errors": [
        {
          "name": "BlogNotFound"
        },
        {
          "name": "NoDomainConfigured"
        },
        {
          "name": "VerificationFailed"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "verified",
            "message"
          ],
          "properties": {
            "message": {
              "type": "string"
            },
            "verified": {
              "type": "boolean"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "blog"
        ],
        "properties": {
          "blog": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the publication record. Authority MUST match the caller's DID."
          }
        }
      },
      "description": "Verify DNS for the publication's custom domain. Checks the CNAME (or A-record fallback for apex) and the TXT verification record, then requests an SSL certificate."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
