curl --request POST \
--url https://api.getfernand.com/integrations/linear/{conversation_id}/tickets \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"title": "Fix user authentication flow",
"state": "8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b",
"team": "7b8c9d0e-1f2a-3b4c-5d6e-7f8a9b0c1d2e"
}
'{
"id": "8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b",
"title": "Fix user authentication flow",
"url": "https://linear.app/team/issue/ENG-123",
"identifier": "ENG-123",
"assignee": {
"name": "Richard Hendricks",
"avatar_url": "https://avatar.linear.app/9c0d1e2f"
},
"state": {
"name": "Todo",
"type": "backlog",
"color": "#e2e2e2",
"verbose": "2024-01-15T10:30:00+00:00",
"last_updated_at": "2024-01-15T10:30:00Z"
},
"labels": [
{
"name": "bug",
"color": "#5e6ad2"
}
],
"priority": 1,
"priority_label": "Urgent",
"last_updated_at": "2025-01-15T10:30:00Z"
}curl --request POST \
--url https://api.getfernand.com/integrations/linear/{conversation_id}/tickets \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"title": "Fix user authentication flow",
"state": "8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b",
"team": "7b8c9d0e-1f2a-3b4c-5d6e-7f8a9b0c1d2e"
}
'{
"id": "8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b",
"title": "Fix user authentication flow",
"url": "https://linear.app/team/issue/ENG-123",
"identifier": "ENG-123",
"assignee": {
"name": "Richard Hendricks",
"avatar_url": "https://avatar.linear.app/9c0d1e2f"
},
"state": {
"name": "Todo",
"type": "backlog",
"color": "#e2e2e2",
"verbose": "2024-01-15T10:30:00+00:00",
"last_updated_at": "2024-01-15T10:30:00Z"
},
"labels": [
{
"name": "bug",
"color": "#5e6ad2"
}
],
"priority": 1,
"priority_label": "Urgent",
"last_updated_at": "2025-01-15T10:30:00Z"
}ID of the conversation to attach the issue to.
Title of the Linear issue (required, max 250 characters).
"Fix user authentication flow"
UUID of the workflow state for the issue (required).
"8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b"
UUID of the team to create the issue in (required).
"7b8c9d0e-1f2a-3b4c-5d6e-7f8a9b0c1d2e"
Description of the issue in HTML or Markdown format (optional, max 250,000 characters, will be converted to Markdown).
"<p>Users are unable to log in with their credentials.</p>"
Priority level - 0 (No priority), 1 (Urgent), 2 (High), 3 (Medium), 4 (Low) (optional).
1
UUID of the user to assign the issue to (optional).
"9c0d1e2f-3a4b-5c6d-7e8f-9a0b1c2d3e4f"
Array of label UUIDs to apply to the issue (optional).
["0d1e2f3a-4b5c-6d7e-8f9a-0b1c2d3e4f5a"]UUID of the project to add the issue to (optional).
"1e2f3a4b-5c6d-7e8f-9a0b-1c2d3e4f5a6b"
Linear issue created and attached successfully.
Unique identifier of the created Linear issue.
"8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b"
Title of the issue.
"Fix user authentication flow"
URL to view the issue in Linear.
"https://linear.app/team/issue/ENG-123"
Human-readable issue identifier.
"ENG-123"
Assigned user (null if unassigned).
Show child attributes
Current workflow state of the issue.
Show child attributes
List of labels applied to the issue.
Show child attributes
Priority level (0=No priority, 1=Urgent, 2=High, 3=Medium, 4=Low).
1
Display name of the priority level.
"Urgent"
ISO 8601 timestamp of the last update.
"2025-01-15T10:30:00Z"
Was this page helpful?