Yes, you can let them create product directly
I want the users to be able to create a product within a category, and if that category doesn't exist, then it would be created automatically. So there would be no API for creating the category separately (since I don't want people to create categories without any products).
So, there is no possibility to create category explicitly. But you need some id to create product inside of it. I suggest you following solution.
You need some id for category. And in some way client should know about categories. So you can have optionally possibility to get categories list.
GET /categories
Anyway with list of categories or without it, you can expose URL to user to create product:
POST /categories/{catIdOrName}/products
In this operatio you should check whether {catIdOrName} exists, and if no create it and product inside of it. But truly speaking, category creation then isn't clear. But such behaivoiur could be.
Better way I see:
- Operation to get list of categories.
- In Product object - property/field with category. Anyway you should have connection between Category-Product,
- In Category object field/property "bool isNew"
When user is creating product into new category, isNew will be true and in URL will be used special Id for new category or 'new' string id.
POST /categories/new/products
When with request comes category that already exists but marked as new. Than return 409 Conflict.
When product comes to existing ctaegory than real category id in URI will be used.
POST /categories/sport/products
Or as an alternative make categories and products independent by URI. And create only products by POST /products, where in Product object category is set and while execution it will be created if needed. And on categories resource it will be able only to fetch list of categories by GET.