cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#LINEAR_CREATE_SUB_ISSUE' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "LINEAR_CREATE_SUB_ISSUE", "parameters": { "parentId": "<string>", "teamId": "<string>", "title": "<string>", "description": "<string>", "additionalFields": {} } } '
Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Parent ID : Specify the Issue ID for the parent of this new issue.
Specify the team ID of the parent for this new issue
Title : Specify a title for this issue.
Description : Specify a description for this issue.
Additional Fields : Specify additional fields to include on this project as JSON. For example, you may associate the issue with a Project Lead here. See the docs (https://studio.apollographql.com/public/Linear-API/schema/reference/objects/Project?variant=current) for available fields. (example: "{ lead: }")
Success
Was this page helpful?