Hi all,
I’m running into a permissions issue when trying to create new topics via the API in a category that’s locked down to “see” and “reply” only.
What I’m Trying to Do
- On an external page, I collect title/body/category from a user.
- My script sends a POST to /posts.json to impersonate that user.
- I expect a new topic to be created in the chosen category.
What Actually Happens
- The category’s permissions are set to See & Reply only (no “Create” allowed).
- My script immediately fails with:
{"status":403,"body":"{\"errors\":[\"You are not permitted to view the requested resource.\"],\"error_type\":\"invalid_access\"}"}
If I temporarily change the category to allow “Create” for every user, the same API call succeeds and the topic is created.
Is there any way to let user‑level API calls create a new topic in a category that’s otherwise locked without permanently opening up the category?
Thanks in advance!