Apply all approved/edited suggestions — create or update tickets and milestones
const url = 'https://example.com/api/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/roadmap-check/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/apply';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/roadmap-check/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/apply \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{}'Iterates suggestions where approval_status ∈ (‘approved’,‘edited’) and dispatches per row by suggested_action: create_ticket, update_ticket, move_milestone, merge_duplicate, suggest_new_milestone, skip. New milestones are idempotent on title (case-insensitive). Fault-tolerant: a single row failure does not abort the rest.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Project UUID
Request Body
Section titled “Request Body ”object
Responses
Section titled “ Responses ”Apply summary and per-row outcomes
object
object
object
Project not linked to a billing tenant
Not authenticated
object
Human-readable error message
Stable machine-readable error code for client branching
First validation message per field path
object
Structured validation issues (Zod)
object
Seconds until rate limit resets (429 responses)
True if re-linking GitHub may fix the issue
Forbidden
object
Human-readable error message
Stable machine-readable error code for client branching
First validation message per field path
object
Structured validation issues (Zod)
object
Seconds until rate limit resets (429 responses)