Sazabi
APIWork items

Create a work item

POST
/work-items

Create a work item (e.g. a Linear issue) in a connected issue tracker, attributing the write to the requesting user.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/work-items" \  -H "Content-Type: application/json" \  -d '{    "container": "string",    "title": "string"  }'
{  "identifier": "string",  "title": "string",  "url": "string",  "state": "string",  "attribution": {    "kind": "user",    "name": "string",    "email": "string"  },  "reused": true}