> For the complete documentation index, see [llms.txt](https://noctaly-bot.gitbook.io/noctaly-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://noctaly-bot.gitbook.io/noctaly-api/economy/money.md).

# Money

### Update Member Money

```http
POST guilds/{guildID}/users/{userID}/money
```

Add or remove money from a member.

#### Request Body

<table><thead><tr><th width="96">Field</th><th width="100" align="center">Type</th><th width="423">Description</th><th align="center">Default</th></tr></thead><tbody><tr><td>money <mark style="color:red;">*</mark></td><td align="center"><code>number</code></td><td><p>The amount of money to give or remove. If the amount is positive, it gives money, if it's negative, it removes money.</p><p>Max: 1,000,000,000. Min: -1,000,000,000.</p></td><td align="center">—</td></tr><tr><td>multiply</td><td align="center"><code>boolean</code></td><td>Should the server multiplier and the member's booster roles affect the amount of money.</td><td align="center">false</td></tr></tbody></table>

#### Response Fields

<table data-full-width="false"><thead><tr><th width="96">Field</th><th width="100" align="center">Type</th><th>Description</th></tr></thead><tbody><tr><td>money</td><td align="center"><code>number</code></td><td>The amount of money given or removed.</td></tr></tbody></table>

```json
{
    "money": 2500,
}
```
