Creating a tracker item with attachments (Image PNG , jpg) in description using rest API in V2/V3
Hello Team,
I am working with Code beamer version 22.2.1.0 and trying to upload an image (PNG/JPG) as an attachment to a tracker item using the REST API.
I can list attachments successfully using:
GET /cb/rest/v3/items/{item Id}/attachments
But when I try to upload using:
POST /cb/rest/v3/items/{ item_Id}/attachments
with multipart/form-data, I either receive 400/415 errors or the request succeeds but no file appears under the "Attachments" tab in the UI.
Example I tried in Python:
```python
with open("test.png", "rb") as f:
files = { "attachments": ("test.png", f, "image/png") }
resp = session.post(f"{base_url}/v3/items/{item_id}/attachments", files=files)

