List Playbook suggestions
curl --request GET \
--url https://api-us.hihobbes.com/api/v1/playbook/suggestions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api-us.hihobbes.com/api/v1/playbook/suggestions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-us.hihobbes.com/api/v1/playbook/suggestions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"suggestionGroups": [
{
"groupId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"origin": "<string>",
"generationRevision": 123,
"baseSectionsEtag": "<string>",
"changes": [
{
"changeId": "<string>",
"sectionKey": "<string>",
"title": "<string>",
"proposedPayload": "<unknown>",
"rationale": "<string>",
"currentPayload": "<unknown>",
"sourceAssetIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"sourceSummaryIds": [
"<string>"
],
"sourceConversationIds": [
"<string>"
],
"sourceOptimizationRunId": "<string>",
"sourceOptimizationBatchId": "<string>",
"resurfacedAfterDecline": false
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"baseVersion": 123,
"evidenceGateSnapshot": {},
"evidenceSnapshot": {}
}
]
}{
"detail": "API key required or invalid."
}{
"detail": "API key does not include the required scope."
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"detail": "Rate limit or organization quota exceeded."
}Playbook
List Playbook suggestions
Return ready Hobbes suggestions with evidence and exact proposed changes.
GET
/
api
/
v1
/
playbook
/
suggestions
List Playbook suggestions
curl --request GET \
--url https://api-us.hihobbes.com/api/v1/playbook/suggestions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api-us.hihobbes.com/api/v1/playbook/suggestions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-us.hihobbes.com/api/v1/playbook/suggestions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"suggestionGroups": [
{
"groupId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"origin": "<string>",
"generationRevision": 123,
"baseSectionsEtag": "<string>",
"changes": [
{
"changeId": "<string>",
"sectionKey": "<string>",
"title": "<string>",
"proposedPayload": "<unknown>",
"rationale": "<string>",
"currentPayload": "<unknown>",
"sourceAssetIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"sourceSummaryIds": [
"<string>"
],
"sourceConversationIds": [
"<string>"
],
"sourceOptimizationRunId": "<string>",
"sourceOptimizationBatchId": "<string>",
"resurfacedAfterDecline": false
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"baseVersion": 123,
"evidenceGateSnapshot": {},
"evidenceSnapshot": {}
}
]
}{
"detail": "API key required or invalid."
}{
"detail": "API key does not include the required scope."
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"detail": "Rate limit or organization quota exceeded."
}Requires
playbook:read.
Each result is a ready suggestion group whose changes target Playbook sections.
Transcript evidence is included only when the key also has transcripts:read.