curl --request GET \
--url https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals \
--header 'Authorization: Bearer <token>'import requests
url = "https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals', 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}/external-operational-signals",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"deliveryContext": {
"repository": {
"id": 2,
"name": "<string>"
},
"pull_request": {
"number": 2,
"title": "<string>",
"url": "<string>",
"state": "open",
"head_sha": "<string>",
"observed_at": "2023-11-07T05:31:56Z",
"provider_updated_at": "2023-11-07T05:31:56Z",
"provider_event_id": "<string>",
"source_url": "<string>"
},
"review": {
"observed_at": "2023-11-07T05:31:56Z",
"provider_updated_at": "2023-11-07T05:31:56Z",
"provider_event_id": "<string>",
"source_url": "<string>",
"state": "pending"
},
"workflows": [
{
"observed_at": "2023-11-07T05:31:56Z",
"provider_updated_at": "2023-11-07T05:31:56Z",
"provider_event_id": "<string>",
"source_url": "<string>",
"name": "<string>",
"state": "pending",
"required": false
}
],
"required_checks": {
"state": "disabled",
"aggregate": "none",
"items": [
{
"context": "<string>",
"integration_id": 2,
"policy_sources": [
"classic"
],
"state": "pending",
"provider_state": "<string>",
"provider_conclusion": "<string>",
"url": "<string>",
"provider_updated_at": "2023-11-07T05:31:56Z"
}
],
"error_code": "<string>",
"observed_at": "2023-11-07T05:31:56Z"
},
"freshness": {
"observed_at": "2023-11-07T05:31:56Z",
"stale": true
},
"strongest_blocker": "head_unknown",
"partial": true
}
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}Read current GitHub delivery context
Returns compact, exact-head PR, review, actual GitHub required-check, and configured workflow evidence after current issue authorization. Selection prefers an open PR link, then the latest updated link, then the highest PR number. Required checks union active base-branch rulesets and classic branch protection and read check-runs and legacy commit statuses for the exact head SHA. Partial or unavailable collection and missing evidence remain unknown. With required-check reads disabled, state disabled and aggregate none do not set partial; when enabled, partial or unavailable collection or aggregate unknown sets partial. Required-check reads are disabled by default and require the server-only ATOLL_GITHUB_REQUIRED_CHECKS_READ_ENABLED=1 flag. Pending review/workflow state with null provenance means no current observation and does not by itself set partial. Disabled verification stops new projections. Older-head observations are historical. This endpoint is separate from heartbeat signals and does not perform writes or agent dispatch.
curl --request GET \
--url https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals \
--header 'Authorization: Bearer <token>'import requests
url = "https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals', 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}/external-operational-signals",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://atollhq.com/api/orgs/{id}/issues/{issueId}/external-operational-signals")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"deliveryContext": {
"repository": {
"id": 2,
"name": "<string>"
},
"pull_request": {
"number": 2,
"title": "<string>",
"url": "<string>",
"state": "open",
"head_sha": "<string>",
"observed_at": "2023-11-07T05:31:56Z",
"provider_updated_at": "2023-11-07T05:31:56Z",
"provider_event_id": "<string>",
"source_url": "<string>"
},
"review": {
"observed_at": "2023-11-07T05:31:56Z",
"provider_updated_at": "2023-11-07T05:31:56Z",
"provider_event_id": "<string>",
"source_url": "<string>",
"state": "pending"
},
"workflows": [
{
"observed_at": "2023-11-07T05:31:56Z",
"provider_updated_at": "2023-11-07T05:31:56Z",
"provider_event_id": "<string>",
"source_url": "<string>",
"name": "<string>",
"state": "pending",
"required": false
}
],
"required_checks": {
"state": "disabled",
"aggregate": "none",
"items": [
{
"context": "<string>",
"integration_id": 2,
"policy_sources": [
"classic"
],
"state": "pending",
"provider_state": "<string>",
"provider_conclusion": "<string>",
"url": "<string>",
"provider_updated_at": "2023-11-07T05:31:56Z"
}
],
"error_code": "<string>",
"observed_at": "2023-11-07T05:31:56Z"
},
"freshness": {
"observed_at": "2023-11-07T05:31:56Z",
"stale": true
},
"strongest_blocker": "head_unknown",
"partial": true
}
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}{
"error": "Unauthorized",
"code": "unauthorized"
}
