curl --request PATCH \
--url https://atollhq.com/api/orgs/{id}/issues/{issueId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"description": "<string>",
"status": "<string>",
"assigneeId": "<string>",
"assigneeIds": [
"<string>"
],
"projectId": "<string>",
"dependencyReleaseMappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"dependency_release_mappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"releaseColumnMappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"milestoneId": "<string>",
"teamId": "<string>",
"startDate": "2023-12-25",
"dueDate": "2023-12-25",
"recurrenceInterval": 123,
"recurrenceDays": [],
"comment_body": "<string>",
"comment_mentions": [
{
"member_id": "<string>"
}
],
"comment_source_metadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"commentSourceMetadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"commentBody": "<string>"
}
'import requests
url = "https://atollhq.com/api/orgs/{id}/issues/{issueId}"
payload = {
"title": "<string>",
"description": "<string>",
"status": "<string>",
"assigneeId": "<string>",
"assigneeIds": ["<string>"],
"projectId": "<string>",
"dependencyReleaseMappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"dependency_release_mappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"releaseColumnMappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"milestoneId": "<string>",
"teamId": "<string>",
"startDate": "2023-12-25",
"dueDate": "2023-12-25",
"recurrenceInterval": 123,
"recurrenceDays": [],
"comment_body": "<string>",
"comment_mentions": [{ "member_id": "<string>" }],
"comment_source_metadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"commentSourceMetadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"commentBody": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: '<string>',
description: '<string>',
status: '<string>',
assigneeId: '<string>',
assigneeIds: ['<string>'],
projectId: '<string>',
dependencyReleaseMappings: [
{
dependencyId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
releaseColumnId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
dependency_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
release_column_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
}
],
dependency_release_mappings: [
{
dependencyId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
releaseColumnId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
dependency_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
release_column_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
}
],
releaseColumnMappings: [
{
dependencyId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
releaseColumnId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
dependency_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
release_column_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
}
],
milestoneId: '<string>',
teamId: '<string>',
startDate: '2023-12-25',
dueDate: '2023-12-25',
recurrenceInterval: 123,
recurrenceDays: [],
comment_body: '<string>',
comment_mentions: [{member_id: '<string>'}],
comment_source_metadata: {
harness: 'codex',
thread_id: '<string>',
session_id: '<string>',
host_id: '<string>'
},
commentSourceMetadata: {
harness: 'codex',
thread_id: '<string>',
session_id: '<string>',
host_id: '<string>'
},
commentBody: '<string>'
})
};
fetch('https://atollhq.com/api/orgs/{id}/issues/{issueId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://atollhq.com/api/orgs/{id}/issues/{issueId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'title' => '<string>',
'description' => '<string>',
'status' => '<string>',
'assigneeId' => '<string>',
'assigneeIds' => [
'<string>'
],
'projectId' => '<string>',
'dependencyReleaseMappings' => [
[
'dependencyId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'releaseColumnId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'dependency_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'release_column_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
],
'dependency_release_mappings' => [
[
'dependencyId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'releaseColumnId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'dependency_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'release_column_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
],
'releaseColumnMappings' => [
[
'dependencyId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'releaseColumnId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'dependency_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'release_column_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
],
'milestoneId' => '<string>',
'teamId' => '<string>',
'startDate' => '2023-12-25',
'dueDate' => '2023-12-25',
'recurrenceInterval' => 123,
'recurrenceDays' => [
],
'comment_body' => '<string>',
'comment_mentions' => [
[
'member_id' => '<string>'
]
],
'comment_source_metadata' => [
'harness' => 'codex',
'thread_id' => '<string>',
'session_id' => '<string>',
'host_id' => '<string>'
],
'commentSourceMetadata' => [
'harness' => 'codex',
'thread_id' => '<string>',
'session_id' => '<string>',
'host_id' => '<string>'
],
'commentBody' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://atollhq.com/api/orgs/{id}/issues/{issueId}"
payload := strings.NewReader("{\n \"title\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"<string>\",\n \"assigneeId\": \"<string>\",\n \"assigneeIds\": [\n \"<string>\"\n ],\n \"projectId\": \"<string>\",\n \"dependencyReleaseMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"dependency_release_mappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"releaseColumnMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"milestoneId\": \"<string>\",\n \"teamId\": \"<string>\",\n \"startDate\": \"2023-12-25\",\n \"dueDate\": \"2023-12-25\",\n \"recurrenceInterval\": 123,\n \"recurrenceDays\": [],\n \"comment_body\": \"<string>\",\n \"comment_mentions\": [\n {\n \"member_id\": \"<string>\"\n }\n ],\n \"comment_source_metadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentSourceMetadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentBody\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://atollhq.com/api/orgs/{id}/issues/{issueId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"<string>\",\n \"assigneeId\": \"<string>\",\n \"assigneeIds\": [\n \"<string>\"\n ],\n \"projectId\": \"<string>\",\n \"dependencyReleaseMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"dependency_release_mappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"releaseColumnMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"milestoneId\": \"<string>\",\n \"teamId\": \"<string>\",\n \"startDate\": \"2023-12-25\",\n \"dueDate\": \"2023-12-25\",\n \"recurrenceInterval\": 123,\n \"recurrenceDays\": [],\n \"comment_body\": \"<string>\",\n \"comment_mentions\": [\n {\n \"member_id\": \"<string>\"\n }\n ],\n \"comment_source_metadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentSourceMetadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentBody\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://atollhq.com/api/orgs/{id}/issues/{issueId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"<string>\",\n \"assigneeId\": \"<string>\",\n \"assigneeIds\": [\n \"<string>\"\n ],\n \"projectId\": \"<string>\",\n \"dependencyReleaseMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"dependency_release_mappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"releaseColumnMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"milestoneId\": \"<string>\",\n \"teamId\": \"<string>\",\n \"startDate\": \"2023-12-25\",\n \"dueDate\": \"2023-12-25\",\n \"recurrenceInterval\": 123,\n \"recurrenceDays\": [],\n \"comment_body\": \"<string>\",\n \"comment_mentions\": [\n {\n \"member_id\": \"<string>\"\n }\n ],\n \"comment_source_metadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentSourceMetadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentBody\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"issue": {},
"comment": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"issue_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"body": "<string>",
"author_id": "<string>",
"author_type": "human",
"reply_to_comment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_metadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"reply_to_comment": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"author_type": "human",
"body": "<string>",
"source_metadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"author_id": "<string>",
"deleted_at": "2023-11-07T05:31:56Z"
}
},
"outcome": {
"persistence": {
"status": "persisted",
"comment_id": "<string>"
},
"mentions": {
"requested": 123,
"resolved": 123,
"created": 123,
"deduped": 123,
"skipped": [
{
"member_id": "<string>",
"reason": "invalid_member_id"
}
],
"recipients": [
{
"member_id": "<string>",
"resolution": "resolved",
"notification": {
"status": "created",
"notification_id": "<string>",
"reason": "<string>"
},
"transport": {
"dispatch": "scheduled",
"final": "delivered"
}
}
],
"notification_rows": {
"status": "complete",
"created": 123,
"deduped": 123,
"skipped": 123,
"failed": 123,
"error": {}
},
"transport": {
"dispatch": "scheduled",
"scheduled": 123,
"already_scheduled": 123,
"not_scheduled": 123,
"failed": 123,
"final": "delivered",
"error": {}
}
}
},
"mentions": {
"requested": 123,
"resolved": 123,
"created": 123,
"deduped": 123,
"skipped": [
{
"member_id": "<string>",
"reason": "invalid_member_id"
}
],
"recipients": [
{
"member_id": "<string>",
"resolution": "resolved",
"notification": {
"status": "created",
"notification_id": "<string>",
"reason": "<string>"
},
"transport": {
"dispatch": "scheduled",
"final": "delivered"
}
}
],
"notification_rows": {
"status": "complete",
"created": 123,
"deduped": 123,
"skipped": 123,
"failed": 123,
"error": {}
},
"transport": {
"dispatch": "scheduled",
"scheduled": 123,
"already_scheduled": 123,
"not_scheduled": 123,
"failed": 123,
"final": "delivered",
"error": {}
}
}
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}Update issue
Updates issue fields. Include optional comment_body and comment_mentions to add an issue comment with structured mentions in the same authenticated request, useful for durable progress notes attached to a status change.
curl --request PATCH \
--url https://atollhq.com/api/orgs/{id}/issues/{issueId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"description": "<string>",
"status": "<string>",
"assigneeId": "<string>",
"assigneeIds": [
"<string>"
],
"projectId": "<string>",
"dependencyReleaseMappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"dependency_release_mappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"releaseColumnMappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"milestoneId": "<string>",
"teamId": "<string>",
"startDate": "2023-12-25",
"dueDate": "2023-12-25",
"recurrenceInterval": 123,
"recurrenceDays": [],
"comment_body": "<string>",
"comment_mentions": [
{
"member_id": "<string>"
}
],
"comment_source_metadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"commentSourceMetadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"commentBody": "<string>"
}
'import requests
url = "https://atollhq.com/api/orgs/{id}/issues/{issueId}"
payload = {
"title": "<string>",
"description": "<string>",
"status": "<string>",
"assigneeId": "<string>",
"assigneeIds": ["<string>"],
"projectId": "<string>",
"dependencyReleaseMappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"dependency_release_mappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"releaseColumnMappings": [
{
"dependencyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"releaseColumnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dependency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"release_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"milestoneId": "<string>",
"teamId": "<string>",
"startDate": "2023-12-25",
"dueDate": "2023-12-25",
"recurrenceInterval": 123,
"recurrenceDays": [],
"comment_body": "<string>",
"comment_mentions": [{ "member_id": "<string>" }],
"comment_source_metadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"commentSourceMetadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"commentBody": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: '<string>',
description: '<string>',
status: '<string>',
assigneeId: '<string>',
assigneeIds: ['<string>'],
projectId: '<string>',
dependencyReleaseMappings: [
{
dependencyId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
releaseColumnId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
dependency_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
release_column_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
}
],
dependency_release_mappings: [
{
dependencyId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
releaseColumnId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
dependency_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
release_column_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
}
],
releaseColumnMappings: [
{
dependencyId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
releaseColumnId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
dependency_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
release_column_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
}
],
milestoneId: '<string>',
teamId: '<string>',
startDate: '2023-12-25',
dueDate: '2023-12-25',
recurrenceInterval: 123,
recurrenceDays: [],
comment_body: '<string>',
comment_mentions: [{member_id: '<string>'}],
comment_source_metadata: {
harness: 'codex',
thread_id: '<string>',
session_id: '<string>',
host_id: '<string>'
},
commentSourceMetadata: {
harness: 'codex',
thread_id: '<string>',
session_id: '<string>',
host_id: '<string>'
},
commentBody: '<string>'
})
};
fetch('https://atollhq.com/api/orgs/{id}/issues/{issueId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://atollhq.com/api/orgs/{id}/issues/{issueId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'title' => '<string>',
'description' => '<string>',
'status' => '<string>',
'assigneeId' => '<string>',
'assigneeIds' => [
'<string>'
],
'projectId' => '<string>',
'dependencyReleaseMappings' => [
[
'dependencyId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'releaseColumnId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'dependency_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'release_column_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
],
'dependency_release_mappings' => [
[
'dependencyId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'releaseColumnId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'dependency_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'release_column_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
],
'releaseColumnMappings' => [
[
'dependencyId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'releaseColumnId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'dependency_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'release_column_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
],
'milestoneId' => '<string>',
'teamId' => '<string>',
'startDate' => '2023-12-25',
'dueDate' => '2023-12-25',
'recurrenceInterval' => 123,
'recurrenceDays' => [
],
'comment_body' => '<string>',
'comment_mentions' => [
[
'member_id' => '<string>'
]
],
'comment_source_metadata' => [
'harness' => 'codex',
'thread_id' => '<string>',
'session_id' => '<string>',
'host_id' => '<string>'
],
'commentSourceMetadata' => [
'harness' => 'codex',
'thread_id' => '<string>',
'session_id' => '<string>',
'host_id' => '<string>'
],
'commentBody' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://atollhq.com/api/orgs/{id}/issues/{issueId}"
payload := strings.NewReader("{\n \"title\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"<string>\",\n \"assigneeId\": \"<string>\",\n \"assigneeIds\": [\n \"<string>\"\n ],\n \"projectId\": \"<string>\",\n \"dependencyReleaseMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"dependency_release_mappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"releaseColumnMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"milestoneId\": \"<string>\",\n \"teamId\": \"<string>\",\n \"startDate\": \"2023-12-25\",\n \"dueDate\": \"2023-12-25\",\n \"recurrenceInterval\": 123,\n \"recurrenceDays\": [],\n \"comment_body\": \"<string>\",\n \"comment_mentions\": [\n {\n \"member_id\": \"<string>\"\n }\n ],\n \"comment_source_metadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentSourceMetadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentBody\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://atollhq.com/api/orgs/{id}/issues/{issueId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"<string>\",\n \"assigneeId\": \"<string>\",\n \"assigneeIds\": [\n \"<string>\"\n ],\n \"projectId\": \"<string>\",\n \"dependencyReleaseMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"dependency_release_mappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"releaseColumnMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"milestoneId\": \"<string>\",\n \"teamId\": \"<string>\",\n \"startDate\": \"2023-12-25\",\n \"dueDate\": \"2023-12-25\",\n \"recurrenceInterval\": 123,\n \"recurrenceDays\": [],\n \"comment_body\": \"<string>\",\n \"comment_mentions\": [\n {\n \"member_id\": \"<string>\"\n }\n ],\n \"comment_source_metadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentSourceMetadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentBody\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://atollhq.com/api/orgs/{id}/issues/{issueId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"<string>\",\n \"assigneeId\": \"<string>\",\n \"assigneeIds\": [\n \"<string>\"\n ],\n \"projectId\": \"<string>\",\n \"dependencyReleaseMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"dependency_release_mappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"releaseColumnMappings\": [\n {\n \"dependencyId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"releaseColumnId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"dependency_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"release_column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"milestoneId\": \"<string>\",\n \"teamId\": \"<string>\",\n \"startDate\": \"2023-12-25\",\n \"dueDate\": \"2023-12-25\",\n \"recurrenceInterval\": 123,\n \"recurrenceDays\": [],\n \"comment_body\": \"<string>\",\n \"comment_mentions\": [\n {\n \"member_id\": \"<string>\"\n }\n ],\n \"comment_source_metadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentSourceMetadata\": {\n \"harness\": \"codex\",\n \"thread_id\": \"<string>\",\n \"session_id\": \"<string>\",\n \"host_id\": \"<string>\"\n },\n \"commentBody\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"issue": {},
"comment": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"issue_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"body": "<string>",
"author_id": "<string>",
"author_type": "human",
"reply_to_comment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_metadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"reply_to_comment": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"author_type": "human",
"body": "<string>",
"source_metadata": {
"harness": "codex",
"thread_id": "<string>",
"session_id": "<string>",
"host_id": "<string>"
},
"author_id": "<string>",
"deleted_at": "2023-11-07T05:31:56Z"
}
},
"outcome": {
"persistence": {
"status": "persisted",
"comment_id": "<string>"
},
"mentions": {
"requested": 123,
"resolved": 123,
"created": 123,
"deduped": 123,
"skipped": [
{
"member_id": "<string>",
"reason": "invalid_member_id"
}
],
"recipients": [
{
"member_id": "<string>",
"resolution": "resolved",
"notification": {
"status": "created",
"notification_id": "<string>",
"reason": "<string>"
},
"transport": {
"dispatch": "scheduled",
"final": "delivered"
}
}
],
"notification_rows": {
"status": "complete",
"created": 123,
"deduped": 123,
"skipped": 123,
"failed": 123,
"error": {}
},
"transport": {
"dispatch": "scheduled",
"scheduled": 123,
"already_scheduled": 123,
"not_scheduled": 123,
"failed": 123,
"final": "delivered",
"error": {}
}
}
},
"mentions": {
"requested": 123,
"resolved": 123,
"created": 123,
"deduped": 123,
"skipped": [
{
"member_id": "<string>",
"reason": "invalid_member_id"
}
],
"recipients": [
{
"member_id": "<string>",
"resolution": "resolved",
"notification": {
"status": "created",
"notification_id": "<string>",
"reason": "<string>"
},
"transport": {
"dispatch": "scheduled",
"final": "delivered"
}
}
],
"notification_rows": {
"status": "complete",
"created": 123,
"deduped": 123,
"skipped": 123,
"failed": 123,
"error": {}
},
"transport": {
"dispatch": "scheduled",
"scheduled": 123,
"already_scheduled": 123,
"not_scheduled": 123,
"failed": 123,
"final": "delivered",
"error": {}
}
}
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Stored project board-column key, not the visible label. Membership is validated against the selected project's live workflow.
^[a-z0-9_]+$0, 1, 2, 3 Set to a project UUID to move the issue, or null for a projectless issue. A projectless move is rejected when the issue blocks dependencies because release points require a blocker project.
Required when moving a blocker to another project: one destination release column for every blocking dependency. The update is atomic. Item aliases dependency_id and release_column_id are also accepted.
One dependency release mapping. Use camelCase or snake_case field names; both forms may be mixed for compatibility.
- Option 1
- Option 2
- Option 3
- Option 4
Show child attributes
Show child attributes
Snake-case compatibility alias for dependencyReleaseMappings. Items accept dependency_id or dependencyId and release_column_id or releaseColumnId.
One dependency release mapping. Use camelCase or snake_case field names; both forms may be mixed for compatibility.
- Option 1
- Option 2
- Option 3
- Option 4
Show child attributes
Show child attributes
Legacy compatibility alias for dependencyReleaseMappings. Items accept dependency_id or dependencyId and release_column_id or releaseColumnId.
One dependency release mapping. Use camelCase or snake_case field names; both forms may be mixed for compatibility.
- Option 1
- Option 2
- Option 3
- Option 4
Show child attributes
Show child attributes
Date-only due date in YYYY-MM-DD format.
Recurring task cadence. Use recurrenceInterval with custom to specify days.
daily, weekly, biweekly, monthly, custom Custom recurrence interval in days.
Set selected weekdays for weekly recurrence, or null/[] to return the series to its due-date weekday.
mon, tue, wed, thu, fri, sat, sun Optional Markdown/plain text or rich-text HTML issue comment body created in the same authenticated issue update request. Stored and returned as sanitized HTML; rejected when sanitization leaves no visible text or safe media. Use this to preserve durable progress evidence when changing status.
Structured mentions for the comment created by comment_body. Each member_id is the stable Atoll org member ID, not an auth user ID or display name.
Show child attributes
Show child attributes
Hidden routing provenance for agent-authored comments. Omit this object unless the host exposes a real thread or session ID, and never invent one. Contains harness identifiers only; never include credentials, prompts, or arbitrary runtime state.
- Option 1
- Option 2
Show child attributes
Show child attributes
Hidden routing provenance for agent-authored comments. Omit this object unless the host exposes a real thread or session ID, and never invent one. Contains harness identifiers only; never include credentials, prompts, or arbitrary runtime state.
- Option 1
- Option 2
Show child attributes
Show child attributes
camelCase alias for comment_body.

