> For the complete documentation index, see [llms.txt](https://docs.wetbot.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wetbot.space/api/requests/give-item.md).

# Выдать предмет

Тип: POST\
Путь: `/guilds/:guildId/users/:userId/inventory`\
Параметры: \
:guildId - ID сервера\
:userId - ID пользователя\
Тело запроса:

{% code lineNumbers="true" fullWidth="false" %}

```json
{
    "items": [ //Array
        { //Первый предмет
            "itemID": "id", //String
            "amount": 10 //Number -1000000000 - 1000000000
        },
        { //Второй предмет
            "itemID": "id", //String
            "amount": 10 //Number -1000000000 - 1000000000
        }
    ]
}
```

{% endcode %}

Возвращаемое значение: [Profile](/api/data-types/profile.md)
