- From the Azure Boards hub, select Boards → Backlogs.
- Click New Item at the top of the backlog view.
- Enter a title, description, and optionally assign a work item type (User Story, Bug, or Issue).
- Press Enter to save.
POST https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/${type}?api-version=7.0
Content-Type: application/json-patch+json
[
{ "op": "add", "path": "/fields/System.Title", "value": "Implement login flow" },
{ "op": "add", "path": "/fields/System.AssignedTo", "value": "john.doe@contoso.com" }
]