> ## Documentation Index
> Fetch the complete documentation index at: https://docs.smokeball.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Memos

[**@smokeballdev/smokeball-client-sdk**](./../../../../README)

***

# Interface: Api

Entry point for memos in Smokeball.

## Methods

### open()

> **open**(`memoId`): `void`

Opens the specified memo.

#### Parameters

##### memoId

`string`

the memo to open.

#### Returns

`void`

#### Example

```
// Opens the memo with the specified id.
await sdk.memos.open('d2e8aea9-e201-4be7-bbe6-a4f64cc491ab');
```

***

### openNew()

> **openNew**(`request`): `void`

Opens pre-populated memo window.

#### Parameters

##### request

[`OpenNewRequest`](./OpenNewRequest)

the open new memo request.

#### Returns

`void`

#### Example

```
const request: OpenNewRequest = {
  matterId: 'fd540bd6-f74c-45bf-b2ab-8107d0781a83',
  title: 'Client Meeting Notes',
  text: 'The client accepted our proposal'
};

await sdk.memos.openNew(request);
```
