# Sandbox.Json.Pointer.Append

## Overload 1

```csharp
Pointer Append(string token)
```

Appends a token to the JSON Pointer and returns a new [Sandbox.Json.Pointer](/api/Sandbox.Json.Pointer).

### Parameters

- `token` (`string`): The token to append.

### Returns

`Pointer`: A new [Sandbox.Json.Pointer](/api/Sandbox.Json.Pointer) with the appended token.

## Overload 2

```csharp
Pointer Append(int index)
```

Appends an integer index as a token to the JSON Pointer and returns a new [Sandbox.Json.Pointer](/api/Sandbox.Json.Pointer).

### Parameters

- `index` (`int`): The integer index to append.

### Returns

`Pointer`: A new [Sandbox.Json.Pointer](/api/Sandbox.Json.Pointer) with the appended index.

Declared in [Sandbox.Json.Pointer](/api/Sandbox.Json.Pointer).
Assembly: `Sandbox.Engine`.
