> ## Documentation Index
> Fetch the complete documentation index at: https://superdoc-caio-pizzol-docs-ai-core-preset.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# sections.setHeaderFooterRef

> Set or replace a section header/footer reference for a variant.

## Summary

Set or replace a section header/footer reference for a variant.

* Operation ID: `sections.setHeaderFooterRef`
* API member path: `editor.doc.sections.setHeaderFooterRef(...)`
* Mutates document: `yes`
* Idempotency: `conditional`
* Supports tracked mode: `no`
* Supports dry run: `yes`
* Deterministic target resolution: `yes`

## Expected result

Returns a SectionMutationResult receipt; reports NO\_OP if the header/footer reference already matches.

## Input fields

| Field              | Type           | Required | Description                      |
| ------------------ | -------------- | -------- | -------------------------------- |
| `kind`             | enum           | yes      | `"header"`, `"footer"`           |
| `refId`            | string         | yes      |                                  |
| `target`           | SectionAddress | yes      | SectionAddress                   |
| `target.kind`      | `"section"`    | yes      | Constant: `"section"`            |
| `target.sectionId` | string         | yes      |                                  |
| `variant`          | enum           | yes      | `"default"`, `"first"`, `"even"` |

### Example request

```json theme={null}
{
  "kind": "header",
  "refId": "example",
  "target": {
    "kind": "section",
    "sectionId": "example"
  },
  "variant": "default"
}
```

## Output fields

### Variant 1 (success=true)

| Field               | Type           | Required | Description           |
| ------------------- | -------------- | -------- | --------------------- |
| `section`           | SectionAddress | yes      | SectionAddress        |
| `section.kind`      | `"section"`    | yes      | Constant: `"section"` |
| `section.sectionId` | string         | yes      |                       |
| `success`           | `true`         | yes      | Constant: `true`      |

### Variant 2 (success=false)

| Field             | Type    | Required | Description                                               |
| ----------------- | ------- | -------- | --------------------------------------------------------- |
| `failure`         | object  | yes      |                                                           |
| `failure.code`    | enum    | yes      | `"NO_OP"`, `"INVALID_TARGET"`, `"CAPABILITY_UNAVAILABLE"` |
| `failure.details` | any     | no       |                                                           |
| `failure.message` | string  | yes      |                                                           |
| `success`         | `false` | yes      | Constant: `false`                                         |

### Example response

```json theme={null}
{
  "section": {
    "kind": "section",
    "sectionId": "example"
  },
  "success": true
}
```

## Pre-apply throws

* `TARGET_NOT_FOUND`
* `INVALID_TARGET`
* `INVALID_INPUT`
* `CAPABILITY_UNAVAILABLE`
* `INTERNAL_ERROR`

## Non-applied failure codes

* `NO_OP`
* `INVALID_TARGET`
* `CAPABILITY_UNAVAILABLE`

## Raw schemas

<Accordion title="Raw input schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "kind": {
        "enum": [
          "header",
          "footer"
        ]
      },
      "refId": {
        "minLength": 1,
        "type": "string"
      },
      "target": {
        "$ref": "#/$defs/SectionAddress"
      },
      "variant": {
        "enum": [
          "default",
          "first",
          "even"
        ]
      }
    },
    "required": [
      "target",
      "kind",
      "variant",
      "refId"
    ],
    "type": "object"
  }
  ```
</Accordion>

<Accordion title="Raw output schema">
  ```json theme={null}
  {
    "oneOf": [
      {
        "additionalProperties": false,
        "properties": {
          "section": {
            "$ref": "#/$defs/SectionAddress"
          },
          "success": {
            "const": true
          }
        },
        "required": [
          "success",
          "section"
        ],
        "type": "object"
      },
      {
        "additionalProperties": false,
        "properties": {
          "failure": {
            "additionalProperties": false,
            "properties": {
              "code": {
                "enum": [
                  "NO_OP",
                  "INVALID_TARGET",
                  "CAPABILITY_UNAVAILABLE"
                ]
              },
              "details": {},
              "message": {
                "type": "string"
              }
            },
            "required": [
              "code",
              "message"
            ],
            "type": "object"
          },
          "success": {
            "const": false
          }
        },
        "required": [
          "success",
          "failure"
        ],
        "type": "object"
      }
    ]
  }
  ```
</Accordion>

<Accordion title="Raw success schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "section": {
        "$ref": "#/$defs/SectionAddress"
      },
      "success": {
        "const": true
      }
    },
    "required": [
      "success",
      "section"
    ],
    "type": "object"
  }
  ```
</Accordion>

<Accordion title="Raw failure schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "failure": {
        "additionalProperties": false,
        "properties": {
          "code": {
            "enum": [
              "NO_OP",
              "INVALID_TARGET",
              "CAPABILITY_UNAVAILABLE"
            ]
          },
          "details": {},
          "message": {
            "type": "string"
          }
        },
        "required": [
          "code",
          "message"
        ],
        "type": "object"
      },
      "success": {
        "const": false
      }
    },
    "required": [
      "success",
      "failure"
    ],
    "type": "object"
  }
  ```
</Accordion>
