# lol.dids.manage.syncSpace

> 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.syncSpace)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/lol.dids.manage.syncSpace/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/lol.dids.manage.syncSpace/examples)

## Definitions

### `lol.dids.manage.syncSpace`

**Type**: `procedure`

Pull the authority's repo in a space now, without waiting for a write notification. Authority only.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `space` | `string` (at-uri) | Yes |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `jobId` | `string` | Yes |  |

#### Errors

- **SpaceNotFound**: Bard is not connected to that space.
- **NotSpaceAuthority**: Only the space's authority may force a pull.
- **NoLiveCredential**: Bard holds no live credential for the space; grant access first.
- **SpacesDisabled**: Space support is disabled on this deployment.

## Raw Schema

```json
{
  "id": "lol.dids.manage.syncSpace",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "space"
          ],
          "properties": {
            "space": {
              "type": "string",
              "format": "at-uri"
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "SpaceNotFound",
          "description": "Bard is not connected to that space."
        },
        {
          "name": "NotSpaceAuthority",
          "description": "Only the space's authority may force a pull."
        },
        {
          "name": "NoLiveCredential",
          "description": "Bard holds no live credential for the space; grant access first."
        },
        {
          "name": "SpacesDisabled",
          "description": "Space support is disabled on this deployment."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "jobId"
          ],
          "properties": {
            "jobId": {
              "type": "string"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Pull the authority's repo in a space now, without waiting for a write notification. Authority only."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
