Available Actions
issuesprojectscyclesteams
Input Schema
{
"type": "object",
"required": [
"teamId",
"title"
],
"properties": {
"title": {
"type": "string"
},
"teamId": {
"type": "string"
},
"description": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"issue": {
"type": "object"
},
"success": {
"type": "boolean"
}
}
}Quick Start
API Endpoint
POST /api/execute/linearcURL Example
curl -X POST \
https://api.nulayers.com/execute/linear \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "issues"}'