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

# Add a category list item using REST

> Add a category list item

```javascript theme={null}
var item = {}
item.Name = "Created by unit test";
item.Tooltip = "Unit Tests FTW";
item = Post("api/v1/List/Category/items", item)
```

The list item will be added - we can get the whole list here:

```javascript theme={null}
item = Get("api/v1/List/Category/items", item)
```


## Related topics

- [Add a category list item](/en/api/web-services/howto/company/add-catlist-item-webapi-agents.md)
- [REST WebAPI](/en/api/web-services/endpoints/rest-webapi/index.md)
- [Agents WebAPI](/en/api/web-services/endpoints/agents-webapi/index.md)
- [Post Category](/en/api/reference/restful/rest/list_category/post-category.md)
- [Put Category](/en/api/reference/restful/rest/list_category/put-category.md)
- [Get Category](/en/api/reference/restful/rest/list_category/get-category.md)
