## Create a condition `POST https://getkollek.com/api/item-conditions` Create a condition for your account. **Permissions:** Owners and editors. Viewers get a 404 response. ### Body parameters - `name` (string, required): The name of the condition. Maximum 255 characters. **Returns:** The created condition object. ### Example request ```bash curl https://getkollek.com/api/item-conditions \ -X POST \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -d '{ "name": "Used" }' ``` ### Example response `Status: 201` ```json { "data": { "type": "item_condition", "id": "2", "attributes": { "name": "Used", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/item-conditions/2" } } } ```