@agentmc/api 0.1.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +585 -595
- package/dist/cli.js.map +1 -1
- package/dist/generated/operations.d.ts +503 -512
- package/dist/generated/operations.js +585 -595
- package/dist/generated/operations.js.map +1 -1
- package/dist/index.d.ts +226 -202
- package/dist/index.js +585 -595
- package/dist/index.js.map +1 -1
- package/docs/operations/README.md +6 -6
- package/docs/operations/agentHeartbeat.md +41 -17
- package/docs/operations/{commentWorkspaceCalendarItem.md → commentCalendarItem.md} +2 -2
- package/docs/operations/connectAgent.md +39 -3
- package/docs/operations/{createWorkspaceCalendarItem.md → createCalendarItem.md} +2 -12
- package/docs/operations/{deleteWorkspaceCalendarItem.md → deleteCalendarItem.md} +2 -2
- package/docs/operations/index.json +585 -595
- package/docs/operations/{workspaceCalendar.md → listCalendar.md} +2 -12
- package/docs/operations/listNotifications.md +1 -1
- package/docs/operations/{showWorkspaceCalendarItem.md → showCalendarItem.md} +2 -12
- package/docs/operations/{updateWorkspaceCalendarItem.md → updateCalendarItem.md} +2 -12
- package/examples/http/agentHeartbeat.ts +20 -8
- package/examples/http/{commentWorkspaceCalendarItem.ts → commentCalendarItem.ts} +1 -1
- package/examples/http/connectAgent.ts +19 -1
- package/examples/http/{createWorkspaceCalendarItem.ts → createCalendarItem.ts} +1 -1
- package/examples/http/{showWorkspaceCalendarItem.ts → deleteCalendarItem.ts} +1 -1
- package/examples/http/{workspaceCalendar.ts → listCalendar.ts} +1 -1
- package/examples/http/{deleteWorkspaceCalendarItem.ts → showCalendarItem.ts} +1 -1
- package/examples/http/{updateWorkspaceCalendarItem.ts → updateCalendarItem.ts} +1 -1
- package/package.json +1 -1
- package/spec/openapi.filtered.json +268 -242
package/dist/cli.js
CHANGED
|
@@ -174,16 +174,28 @@ var operations = [
|
|
|
174
174
|
"agent": {
|
|
175
175
|
"id": 42,
|
|
176
176
|
"name": "codex-runtime-prod",
|
|
177
|
-
"
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
177
|
+
"identity": {
|
|
178
|
+
"name": "Jarvis",
|
|
179
|
+
"creature": "robot",
|
|
180
|
+
"vibe": "calm"
|
|
181
|
+
},
|
|
182
|
+
"models": {
|
|
183
|
+
"resolved": {
|
|
184
|
+
"default": "openai/gpt-5-codex",
|
|
185
|
+
"fallbacks": [
|
|
186
|
+
"anthropic/claude-sonnet-4-20250514"
|
|
187
|
+
]
|
|
181
188
|
},
|
|
182
|
-
{
|
|
183
|
-
"
|
|
184
|
-
|
|
189
|
+
"providers": {
|
|
190
|
+
"openai": [
|
|
191
|
+
"gpt-5-codex",
|
|
192
|
+
"gpt-4.1"
|
|
193
|
+
],
|
|
194
|
+
"anthropic": [
|
|
195
|
+
"claude-sonnet-4-20250514"
|
|
196
|
+
]
|
|
185
197
|
}
|
|
186
|
-
|
|
198
|
+
}
|
|
187
199
|
}
|
|
188
200
|
}
|
|
189
201
|
}
|
|
@@ -775,7 +787,7 @@ var operations = [
|
|
|
775
787
|
]
|
|
776
788
|
},
|
|
777
789
|
{
|
|
778
|
-
"operationId": "
|
|
790
|
+
"operationId": "commentCalendarItem",
|
|
779
791
|
"method": "post",
|
|
780
792
|
"path": "/calendar/items/{item}/comments",
|
|
781
793
|
"summary": "Add a comment on a calendar item.",
|
|
@@ -928,7 +940,7 @@ var operations = [
|
|
|
928
940
|
{
|
|
929
941
|
"mediaType": "application/json",
|
|
930
942
|
"example": {
|
|
931
|
-
"name": "
|
|
943
|
+
"name": "openclaw-main",
|
|
932
944
|
"host": "ip-10-0-3-42",
|
|
933
945
|
"runtime_version": "2026.02.1",
|
|
934
946
|
"capabilities": [
|
|
@@ -936,6 +948,21 @@ var operations = [
|
|
|
936
948
|
"calendar",
|
|
937
949
|
"realtime"
|
|
938
950
|
],
|
|
951
|
+
"models": [
|
|
952
|
+
{
|
|
953
|
+
"model_id": "openai/gpt-5-codex",
|
|
954
|
+
"provider": "openai"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"model_id": "anthropic/claude-sonnet-4-20250514",
|
|
958
|
+
"provider": "anthropic"
|
|
959
|
+
}
|
|
960
|
+
],
|
|
961
|
+
"identity": {
|
|
962
|
+
"name": "Jarvis",
|
|
963
|
+
"creature": "robot",
|
|
964
|
+
"vibe": "calm"
|
|
965
|
+
},
|
|
939
966
|
"metadata": {
|
|
940
967
|
"hostname": "worker-01",
|
|
941
968
|
"ip": "10.0.2.15",
|
|
@@ -957,6 +984,9 @@ var operations = [
|
|
|
957
984
|
"runtime": {
|
|
958
985
|
"name": "codex",
|
|
959
986
|
"version": "2026.02.1"
|
|
987
|
+
},
|
|
988
|
+
"identity": {
|
|
989
|
+
"name": "Jarvis"
|
|
960
990
|
}
|
|
961
991
|
}
|
|
962
992
|
}
|
|
@@ -1671,13 +1701,13 @@ var operations = [
|
|
|
1671
1701
|
]
|
|
1672
1702
|
},
|
|
1673
1703
|
{
|
|
1674
|
-
"operationId": "
|
|
1704
|
+
"operationId": "createCalendarItem",
|
|
1675
1705
|
"method": "post",
|
|
1676
|
-
"path": "/
|
|
1677
|
-
"summary": "Create a
|
|
1706
|
+
"path": "/calendar/items",
|
|
1707
|
+
"summary": "Create a calendar item.",
|
|
1678
1708
|
"description": "",
|
|
1679
1709
|
"tags": [
|
|
1680
|
-
"
|
|
1710
|
+
"Calendar"
|
|
1681
1711
|
],
|
|
1682
1712
|
"security": [
|
|
1683
1713
|
[
|
|
@@ -1696,14 +1726,21 @@ var operations = [
|
|
|
1696
1726
|
{
|
|
1697
1727
|
"mediaType": "application/json",
|
|
1698
1728
|
"example": {
|
|
1699
|
-
"
|
|
1700
|
-
"
|
|
1701
|
-
"
|
|
1702
|
-
"
|
|
1703
|
-
"
|
|
1704
|
-
"
|
|
1705
|
-
"
|
|
1706
|
-
"
|
|
1729
|
+
"type": "task",
|
|
1730
|
+
"title": "Review outage timeline",
|
|
1731
|
+
"description": "Confirm sequence of events with on-call notes.",
|
|
1732
|
+
"due_at": "2026-02-24T09:00:00Z",
|
|
1733
|
+
"timezone": "America/Los_Angeles",
|
|
1734
|
+
"status": "todo",
|
|
1735
|
+
"priority": "high",
|
|
1736
|
+
"visibility": "workspace",
|
|
1737
|
+
"assignees": [
|
|
1738
|
+
{
|
|
1739
|
+
"assignee_type": "user",
|
|
1740
|
+
"assignee_id": 8,
|
|
1741
|
+
"role": "owner"
|
|
1742
|
+
}
|
|
1743
|
+
]
|
|
1707
1744
|
}
|
|
1708
1745
|
}
|
|
1709
1746
|
],
|
|
@@ -1711,25 +1748,40 @@ var operations = [
|
|
|
1711
1748
|
{
|
|
1712
1749
|
"status": "201",
|
|
1713
1750
|
"mediaType": "application/json",
|
|
1714
|
-
"description": "
|
|
1751
|
+
"description": "Calendar item created.",
|
|
1715
1752
|
"hasContent": true,
|
|
1716
1753
|
"example": {
|
|
1717
1754
|
"data": {
|
|
1718
1755
|
"id": 42,
|
|
1719
|
-
"
|
|
1720
|
-
"
|
|
1721
|
-
"column_id": 42,
|
|
1756
|
+
"workspace_id": 42,
|
|
1757
|
+
"type": "event",
|
|
1722
1758
|
"title": "Example Title",
|
|
1723
1759
|
"description": "Example description text.",
|
|
1724
|
-
"
|
|
1725
|
-
"
|
|
1760
|
+
"start_at": "2026-02-22T17:21:00Z",
|
|
1761
|
+
"end_at": "2026-02-22T17:21:00Z",
|
|
1726
1762
|
"due_at": "2026-02-22T17:21:00Z",
|
|
1727
|
-
"
|
|
1728
|
-
"
|
|
1729
|
-
"
|
|
1730
|
-
"
|
|
1763
|
+
"all_day": false,
|
|
1764
|
+
"location": "example",
|
|
1765
|
+
"timezone": "America/Los_Angeles",
|
|
1766
|
+
"status": "todo",
|
|
1767
|
+
"priority": "low",
|
|
1768
|
+
"visibility": "workspace",
|
|
1769
|
+
"created_by": 1,
|
|
1770
|
+
"updated_by": 1,
|
|
1771
|
+
"assignees": [
|
|
1772
|
+
{
|
|
1773
|
+
"id": 42,
|
|
1774
|
+
"assignee_type": "user",
|
|
1775
|
+
"assignee_id": 42,
|
|
1776
|
+
"role": "owner",
|
|
1777
|
+
"name": "Example Name",
|
|
1778
|
+
"created_at": "2026-02-22T17:21:00Z"
|
|
1779
|
+
}
|
|
1780
|
+
],
|
|
1781
|
+
"comments_count": 1,
|
|
1731
1782
|
"created_at": "2026-02-22T17:21:00Z",
|
|
1732
|
-
"updated_at": "2026-02-22T17:21:00Z"
|
|
1783
|
+
"updated_at": "2026-02-22T17:21:00Z",
|
|
1784
|
+
"deleted_at": "2026-02-22T17:21:00Z"
|
|
1733
1785
|
}
|
|
1734
1786
|
}
|
|
1735
1787
|
},
|
|
@@ -1831,10 +1883,10 @@ var operations = [
|
|
|
1831
1883
|
]
|
|
1832
1884
|
},
|
|
1833
1885
|
{
|
|
1834
|
-
"operationId": "
|
|
1886
|
+
"operationId": "createTask",
|
|
1835
1887
|
"method": "post",
|
|
1836
|
-
"path": "/tasks
|
|
1837
|
-
"summary": "Create a
|
|
1888
|
+
"path": "/tasks",
|
|
1889
|
+
"summary": "Create a task.",
|
|
1838
1890
|
"description": "",
|
|
1839
1891
|
"tags": [
|
|
1840
1892
|
"Tasks"
|
|
@@ -1850,23 +1902,20 @@ var operations = [
|
|
|
1850
1902
|
"BearerAuth"
|
|
1851
1903
|
]
|
|
1852
1904
|
],
|
|
1853
|
-
"parameters": [
|
|
1854
|
-
{
|
|
1855
|
-
"name": "task",
|
|
1856
|
-
"in": "path",
|
|
1857
|
-
"required": true,
|
|
1858
|
-
"description": "Task identifier.",
|
|
1859
|
-
"example": 1
|
|
1860
|
-
}
|
|
1861
|
-
],
|
|
1905
|
+
"parameters": [],
|
|
1862
1906
|
"requestBodyRequired": true,
|
|
1863
1907
|
"requestExamples": [
|
|
1864
1908
|
{
|
|
1865
1909
|
"mediaType": "application/json",
|
|
1866
1910
|
"example": {
|
|
1867
|
-
"
|
|
1868
|
-
"
|
|
1869
|
-
"
|
|
1911
|
+
"board_id": 5,
|
|
1912
|
+
"column_id": 13,
|
|
1913
|
+
"title": "Draft post-incident summary",
|
|
1914
|
+
"description": "Capture timeline, impact, and remediation status.",
|
|
1915
|
+
"status": "doing",
|
|
1916
|
+
"position": 2,
|
|
1917
|
+
"due_at": "2026-02-24T17:00:00Z",
|
|
1918
|
+
"assigned_to_user_id": 8
|
|
1870
1919
|
}
|
|
1871
1920
|
}
|
|
1872
1921
|
],
|
|
@@ -1874,28 +1923,25 @@ var operations = [
|
|
|
1874
1923
|
{
|
|
1875
1924
|
"status": "201",
|
|
1876
1925
|
"mediaType": "application/json",
|
|
1877
|
-
"description": "Task
|
|
1926
|
+
"description": "Task created.",
|
|
1878
1927
|
"hasContent": true,
|
|
1879
1928
|
"example": {
|
|
1880
1929
|
"data": {
|
|
1881
1930
|
"id": 42,
|
|
1882
|
-
"
|
|
1883
|
-
"
|
|
1884
|
-
"
|
|
1885
|
-
"
|
|
1886
|
-
"
|
|
1887
|
-
"
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
],
|
|
1897
|
-
"edited_at": "2026-02-22T17:21:00Z",
|
|
1898
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
1931
|
+
"team_id": 42,
|
|
1932
|
+
"board_id": 42,
|
|
1933
|
+
"column_id": 42,
|
|
1934
|
+
"title": "Example Title",
|
|
1935
|
+
"description": "Example description text.",
|
|
1936
|
+
"status": "backlog",
|
|
1937
|
+
"position": 1,
|
|
1938
|
+
"due_at": "2026-02-22T17:21:00Z",
|
|
1939
|
+
"created_by_user_id": 42,
|
|
1940
|
+
"assigned_to_user_id": 42,
|
|
1941
|
+
"assigned_to_agent_id": 42,
|
|
1942
|
+
"assignee_type": "human",
|
|
1943
|
+
"created_at": "2026-02-22T17:21:00Z",
|
|
1944
|
+
"updated_at": "2026-02-22T17:21:00Z"
|
|
1899
1945
|
}
|
|
1900
1946
|
}
|
|
1901
1947
|
},
|
|
@@ -1918,6 +1964,25 @@ var operations = [
|
|
|
1918
1964
|
}
|
|
1919
1965
|
}
|
|
1920
1966
|
},
|
|
1967
|
+
{
|
|
1968
|
+
"status": "402",
|
|
1969
|
+
"mediaType": "application/json",
|
|
1970
|
+
"description": "Plan limit reached.",
|
|
1971
|
+
"hasContent": true,
|
|
1972
|
+
"example": {
|
|
1973
|
+
"error": {
|
|
1974
|
+
"code": "validation.failed",
|
|
1975
|
+
"message": "Validation failed.",
|
|
1976
|
+
"details": {
|
|
1977
|
+
"fields": {
|
|
1978
|
+
"title": [
|
|
1979
|
+
"The title field is required."
|
|
1980
|
+
]
|
|
1981
|
+
}
|
|
1982
|
+
}
|
|
1983
|
+
}
|
|
1984
|
+
}
|
|
1985
|
+
},
|
|
1921
1986
|
{
|
|
1922
1987
|
"status": "403",
|
|
1923
1988
|
"mediaType": "application/json",
|
|
@@ -1978,13 +2043,13 @@ var operations = [
|
|
|
1978
2043
|
]
|
|
1979
2044
|
},
|
|
1980
2045
|
{
|
|
1981
|
-
"operationId": "
|
|
2046
|
+
"operationId": "createTaskComment",
|
|
1982
2047
|
"method": "post",
|
|
1983
|
-
"path": "/
|
|
1984
|
-
"summary": "Create a
|
|
2048
|
+
"path": "/tasks/{task}/comments",
|
|
2049
|
+
"summary": "Create a comment on one task.",
|
|
1985
2050
|
"description": "",
|
|
1986
2051
|
"tags": [
|
|
1987
|
-
"
|
|
2052
|
+
"Tasks"
|
|
1988
2053
|
],
|
|
1989
2054
|
"security": [
|
|
1990
2055
|
[
|
|
@@ -1997,27 +2062,23 @@ var operations = [
|
|
|
1997
2062
|
"BearerAuth"
|
|
1998
2063
|
]
|
|
1999
2064
|
],
|
|
2000
|
-
"parameters": [
|
|
2065
|
+
"parameters": [
|
|
2066
|
+
{
|
|
2067
|
+
"name": "task",
|
|
2068
|
+
"in": "path",
|
|
2069
|
+
"required": true,
|
|
2070
|
+
"description": "Task identifier.",
|
|
2071
|
+
"example": 1
|
|
2072
|
+
}
|
|
2073
|
+
],
|
|
2001
2074
|
"requestBodyRequired": true,
|
|
2002
2075
|
"requestExamples": [
|
|
2003
2076
|
{
|
|
2004
2077
|
"mediaType": "application/json",
|
|
2005
2078
|
"example": {
|
|
2006
|
-
"
|
|
2007
|
-
"
|
|
2008
|
-
"
|
|
2009
|
-
"due_at": "2026-02-24T09:00:00Z",
|
|
2010
|
-
"timezone": "America/Los_Angeles",
|
|
2011
|
-
"status": "todo",
|
|
2012
|
-
"priority": "high",
|
|
2013
|
-
"visibility": "workspace",
|
|
2014
|
-
"assignees": [
|
|
2015
|
-
{
|
|
2016
|
-
"assignee_type": "user",
|
|
2017
|
-
"assignee_id": 8,
|
|
2018
|
-
"role": "owner"
|
|
2019
|
-
}
|
|
2020
|
-
]
|
|
2079
|
+
"body": "Posting a handoff note for [@Alex Morgan](/mentions/user/8) to review before standup.",
|
|
2080
|
+
"actor_type": "agent",
|
|
2081
|
+
"actor_id": 42
|
|
2021
2082
|
}
|
|
2022
2083
|
}
|
|
2023
2084
|
],
|
|
@@ -2025,50 +2086,28 @@ var operations = [
|
|
|
2025
2086
|
{
|
|
2026
2087
|
"status": "201",
|
|
2027
2088
|
"mediaType": "application/json",
|
|
2028
|
-
"description": "
|
|
2089
|
+
"description": "Task comment created.",
|
|
2029
2090
|
"hasContent": true,
|
|
2030
2091
|
"example": {
|
|
2031
2092
|
"data": {
|
|
2032
2093
|
"id": 42,
|
|
2033
|
-
"
|
|
2034
|
-
"
|
|
2035
|
-
"
|
|
2036
|
-
"
|
|
2037
|
-
"
|
|
2038
|
-
"
|
|
2039
|
-
"due_at": "2026-02-22T17:21:00Z",
|
|
2040
|
-
"all_day": false,
|
|
2041
|
-
"location": "example",
|
|
2042
|
-
"timezone": "America/Los_Angeles",
|
|
2043
|
-
"status": "todo",
|
|
2044
|
-
"priority": "low",
|
|
2045
|
-
"visibility": "workspace",
|
|
2046
|
-
"created_by": 1,
|
|
2047
|
-
"updated_by": 1,
|
|
2048
|
-
"assignees": [
|
|
2049
|
-
{
|
|
2050
|
-
"id": 42,
|
|
2051
|
-
"assignee_type": "user",
|
|
2052
|
-
"assignee_id": 42,
|
|
2053
|
-
"role": "owner",
|
|
2054
|
-
"name": "Example Name",
|
|
2055
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
2056
|
-
}
|
|
2057
|
-
],
|
|
2058
|
-
"links": [
|
|
2094
|
+
"task_id": 42,
|
|
2095
|
+
"actor_type": "user",
|
|
2096
|
+
"actor_id": 42,
|
|
2097
|
+
"actor_name": "Example Name",
|
|
2098
|
+
"body": "Example content.",
|
|
2099
|
+
"mentions": [
|
|
2059
2100
|
{
|
|
2101
|
+
"key": "example",
|
|
2102
|
+
"type": "user",
|
|
2060
2103
|
"id": 42,
|
|
2061
|
-
"
|
|
2062
|
-
"
|
|
2063
|
-
"
|
|
2064
|
-
"title": "Example Title",
|
|
2065
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
2104
|
+
"label": "example",
|
|
2105
|
+
"handle": "example",
|
|
2106
|
+
"token": "example"
|
|
2066
2107
|
}
|
|
2067
2108
|
],
|
|
2068
|
-
"
|
|
2069
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
2070
|
-
"updated_at": "2026-02-22T17:21:00Z",
|
|
2071
|
-
"deleted_at": "2026-02-22T17:21:00Z"
|
|
2109
|
+
"edited_at": "2026-02-22T17:21:00Z",
|
|
2110
|
+
"created_at": "2026-02-22T17:21:00Z"
|
|
2072
2111
|
}
|
|
2073
2112
|
}
|
|
2074
2113
|
},
|
|
@@ -2092,9 +2131,9 @@ var operations = [
|
|
|
2092
2131
|
}
|
|
2093
2132
|
},
|
|
2094
2133
|
{
|
|
2095
|
-
"status": "
|
|
2134
|
+
"status": "403",
|
|
2096
2135
|
"mediaType": "application/json",
|
|
2097
|
-
"description": "
|
|
2136
|
+
"description": "Forbidden.",
|
|
2098
2137
|
"hasContent": true,
|
|
2099
2138
|
"example": {
|
|
2100
2139
|
"error": {
|
|
@@ -2111,9 +2150,9 @@ var operations = [
|
|
|
2111
2150
|
}
|
|
2112
2151
|
},
|
|
2113
2152
|
{
|
|
2114
|
-
"status": "
|
|
2153
|
+
"status": "404",
|
|
2115
2154
|
"mediaType": "application/json",
|
|
2116
|
-
"description": "
|
|
2155
|
+
"description": "Resource not found.",
|
|
2117
2156
|
"hasContent": true,
|
|
2118
2157
|
"example": {
|
|
2119
2158
|
"error": {
|
|
@@ -2130,28 +2169,9 @@ var operations = [
|
|
|
2130
2169
|
}
|
|
2131
2170
|
},
|
|
2132
2171
|
{
|
|
2133
|
-
"status": "
|
|
2172
|
+
"status": "422",
|
|
2134
2173
|
"mediaType": "application/json",
|
|
2135
|
-
"description": "
|
|
2136
|
-
"hasContent": true,
|
|
2137
|
-
"example": {
|
|
2138
|
-
"error": {
|
|
2139
|
-
"code": "validation.failed",
|
|
2140
|
-
"message": "Validation failed.",
|
|
2141
|
-
"details": {
|
|
2142
|
-
"fields": {
|
|
2143
|
-
"title": [
|
|
2144
|
-
"The title field is required."
|
|
2145
|
-
]
|
|
2146
|
-
}
|
|
2147
|
-
}
|
|
2148
|
-
}
|
|
2149
|
-
}
|
|
2150
|
-
},
|
|
2151
|
-
{
|
|
2152
|
-
"status": "422",
|
|
2153
|
-
"mediaType": "application/json",
|
|
2154
|
-
"description": "Validation failed.",
|
|
2174
|
+
"description": "Validation failed.",
|
|
2155
2175
|
"hasContent": true,
|
|
2156
2176
|
"example": {
|
|
2157
2177
|
"error": {
|
|
@@ -2521,13 +2541,13 @@ var operations = [
|
|
|
2521
2541
|
]
|
|
2522
2542
|
},
|
|
2523
2543
|
{
|
|
2524
|
-
"operationId": "
|
|
2544
|
+
"operationId": "deleteCalendarItem",
|
|
2525
2545
|
"method": "delete",
|
|
2526
|
-
"path": "/
|
|
2527
|
-
"summary": "Delete a
|
|
2546
|
+
"path": "/calendar/items/{item}",
|
|
2547
|
+
"summary": "Delete a calendar item.",
|
|
2528
2548
|
"description": "",
|
|
2529
2549
|
"tags": [
|
|
2530
|
-
"
|
|
2550
|
+
"Calendar"
|
|
2531
2551
|
],
|
|
2532
2552
|
"security": [
|
|
2533
2553
|
[
|
|
@@ -2542,10 +2562,10 @@ var operations = [
|
|
|
2542
2562
|
],
|
|
2543
2563
|
"parameters": [
|
|
2544
2564
|
{
|
|
2545
|
-
"name": "
|
|
2565
|
+
"name": "item",
|
|
2546
2566
|
"in": "path",
|
|
2547
2567
|
"required": true,
|
|
2548
|
-
"description": "
|
|
2568
|
+
"description": "Calendar item identifier.",
|
|
2549
2569
|
"example": 1
|
|
2550
2570
|
}
|
|
2551
2571
|
],
|
|
@@ -2623,10 +2643,10 @@ var operations = [
|
|
|
2623
2643
|
]
|
|
2624
2644
|
},
|
|
2625
2645
|
{
|
|
2626
|
-
"operationId": "
|
|
2646
|
+
"operationId": "deleteTask",
|
|
2627
2647
|
"method": "delete",
|
|
2628
|
-
"path": "/tasks/{task}
|
|
2629
|
-
"summary": "Delete
|
|
2648
|
+
"path": "/tasks/{task}",
|
|
2649
|
+
"summary": "Delete a task.",
|
|
2630
2650
|
"description": "",
|
|
2631
2651
|
"tags": [
|
|
2632
2652
|
"Tasks"
|
|
@@ -2649,13 +2669,6 @@ var operations = [
|
|
|
2649
2669
|
"required": true,
|
|
2650
2670
|
"description": "Task identifier.",
|
|
2651
2671
|
"example": 1
|
|
2652
|
-
},
|
|
2653
|
-
{
|
|
2654
|
-
"name": "comment",
|
|
2655
|
-
"in": "path",
|
|
2656
|
-
"required": true,
|
|
2657
|
-
"description": "Task comment identifier.",
|
|
2658
|
-
"example": 1
|
|
2659
2672
|
}
|
|
2660
2673
|
],
|
|
2661
2674
|
"requestBodyRequired": false,
|
|
@@ -2732,13 +2745,13 @@ var operations = [
|
|
|
2732
2745
|
]
|
|
2733
2746
|
},
|
|
2734
2747
|
{
|
|
2735
|
-
"operationId": "
|
|
2748
|
+
"operationId": "deleteTaskComment",
|
|
2736
2749
|
"method": "delete",
|
|
2737
|
-
"path": "/
|
|
2738
|
-
"summary": "Delete
|
|
2750
|
+
"path": "/tasks/{task}/comments/{comment}",
|
|
2751
|
+
"summary": "Delete one existing task comment.",
|
|
2739
2752
|
"description": "",
|
|
2740
2753
|
"tags": [
|
|
2741
|
-
"
|
|
2754
|
+
"Tasks"
|
|
2742
2755
|
],
|
|
2743
2756
|
"security": [
|
|
2744
2757
|
[
|
|
@@ -2753,10 +2766,17 @@ var operations = [
|
|
|
2753
2766
|
],
|
|
2754
2767
|
"parameters": [
|
|
2755
2768
|
{
|
|
2756
|
-
"name": "
|
|
2769
|
+
"name": "task",
|
|
2757
2770
|
"in": "path",
|
|
2758
2771
|
"required": true,
|
|
2759
|
-
"description": "
|
|
2772
|
+
"description": "Task identifier.",
|
|
2773
|
+
"example": 1
|
|
2774
|
+
},
|
|
2775
|
+
{
|
|
2776
|
+
"name": "comment",
|
|
2777
|
+
"in": "path",
|
|
2778
|
+
"required": true,
|
|
2779
|
+
"description": "Task comment identifier.",
|
|
2760
2780
|
"example": 1
|
|
2761
2781
|
}
|
|
2762
2782
|
],
|
|
@@ -3626,6 +3646,197 @@ var operations = [
|
|
|
3626
3646
|
}
|
|
3627
3647
|
]
|
|
3628
3648
|
},
|
|
3649
|
+
{
|
|
3650
|
+
"operationId": "listCalendar",
|
|
3651
|
+
"method": "get",
|
|
3652
|
+
"path": "/calendar",
|
|
3653
|
+
"summary": "List calendar items.",
|
|
3654
|
+
"description": "",
|
|
3655
|
+
"tags": [
|
|
3656
|
+
"Calendar"
|
|
3657
|
+
],
|
|
3658
|
+
"security": [
|
|
3659
|
+
[
|
|
3660
|
+
"ApiKeyAuth"
|
|
3661
|
+
],
|
|
3662
|
+
[
|
|
3663
|
+
"AgentBearerAuth"
|
|
3664
|
+
],
|
|
3665
|
+
[
|
|
3666
|
+
"BearerAuth"
|
|
3667
|
+
]
|
|
3668
|
+
],
|
|
3669
|
+
"parameters": [
|
|
3670
|
+
{
|
|
3671
|
+
"name": "view",
|
|
3672
|
+
"in": "query",
|
|
3673
|
+
"required": false,
|
|
3674
|
+
"description": "Allowed values: month, week, list.",
|
|
3675
|
+
"example": "month"
|
|
3676
|
+
},
|
|
3677
|
+
{
|
|
3678
|
+
"name": "start",
|
|
3679
|
+
"in": "query",
|
|
3680
|
+
"required": false,
|
|
3681
|
+
"description": "Start.",
|
|
3682
|
+
"example": "2026-02-22T17:21:00Z"
|
|
3683
|
+
},
|
|
3684
|
+
{
|
|
3685
|
+
"name": "end",
|
|
3686
|
+
"in": "query",
|
|
3687
|
+
"required": false,
|
|
3688
|
+
"description": "End.",
|
|
3689
|
+
"example": "2026-02-22T17:21:00Z"
|
|
3690
|
+
},
|
|
3691
|
+
{
|
|
3692
|
+
"name": "type",
|
|
3693
|
+
"in": "query",
|
|
3694
|
+
"required": false,
|
|
3695
|
+
"description": "Type discriminator for this record. Allowed values: event, task.",
|
|
3696
|
+
"example": "event"
|
|
3697
|
+
},
|
|
3698
|
+
{
|
|
3699
|
+
"name": "status",
|
|
3700
|
+
"in": "query",
|
|
3701
|
+
"required": false,
|
|
3702
|
+
"description": "Current lifecycle status for this record. Allowed values: todo, in_progress, blocked, done, canceled.",
|
|
3703
|
+
"example": "todo"
|
|
3704
|
+
},
|
|
3705
|
+
{
|
|
3706
|
+
"name": "priority",
|
|
3707
|
+
"in": "query",
|
|
3708
|
+
"required": false,
|
|
3709
|
+
"description": "Priority level for this record. Allowed values: low, medium, high, urgent.",
|
|
3710
|
+
"example": "low"
|
|
3711
|
+
},
|
|
3712
|
+
{
|
|
3713
|
+
"name": "assignee",
|
|
3714
|
+
"in": "query",
|
|
3715
|
+
"required": false,
|
|
3716
|
+
"description": "Assignee.",
|
|
3717
|
+
"example": "example"
|
|
3718
|
+
},
|
|
3719
|
+
{
|
|
3720
|
+
"name": "q",
|
|
3721
|
+
"in": "query",
|
|
3722
|
+
"required": false,
|
|
3723
|
+
"description": "Case-insensitive text search query.",
|
|
3724
|
+
"example": "retro"
|
|
3725
|
+
},
|
|
3726
|
+
{
|
|
3727
|
+
"name": "per_page",
|
|
3728
|
+
"in": "query",
|
|
3729
|
+
"required": false,
|
|
3730
|
+
"description": "Page size for paginated responses.",
|
|
3731
|
+
"example": 25
|
|
3732
|
+
}
|
|
3733
|
+
],
|
|
3734
|
+
"requestBodyRequired": false,
|
|
3735
|
+
"requestExamples": [],
|
|
3736
|
+
"responses": [
|
|
3737
|
+
{
|
|
3738
|
+
"status": "200",
|
|
3739
|
+
"mediaType": "application/json",
|
|
3740
|
+
"description": "Calendar items returned.",
|
|
3741
|
+
"hasContent": true,
|
|
3742
|
+
"example": {
|
|
3743
|
+
"data": [
|
|
3744
|
+
{
|
|
3745
|
+
"id": 42,
|
|
3746
|
+
"workspace_id": 42,
|
|
3747
|
+
"type": "event",
|
|
3748
|
+
"title": "Example Title",
|
|
3749
|
+
"description": "Example description text.",
|
|
3750
|
+
"start_at": "2026-02-22T17:21:00Z",
|
|
3751
|
+
"end_at": "2026-02-22T17:21:00Z",
|
|
3752
|
+
"due_at": "2026-02-22T17:21:00Z",
|
|
3753
|
+
"all_day": false,
|
|
3754
|
+
"location": "example",
|
|
3755
|
+
"timezone": "America/Los_Angeles",
|
|
3756
|
+
"status": "todo",
|
|
3757
|
+
"priority": "low",
|
|
3758
|
+
"visibility": "workspace",
|
|
3759
|
+
"created_by": 1,
|
|
3760
|
+
"updated_by": 1,
|
|
3761
|
+
"assignees": [
|
|
3762
|
+
{
|
|
3763
|
+
"id": 42,
|
|
3764
|
+
"assignee_type": "user",
|
|
3765
|
+
"assignee_id": 42,
|
|
3766
|
+
"role": "owner",
|
|
3767
|
+
"name": "Example Name",
|
|
3768
|
+
"created_at": "2026-02-22T17:21:00Z"
|
|
3769
|
+
}
|
|
3770
|
+
],
|
|
3771
|
+
"comments_count": 1,
|
|
3772
|
+
"created_at": "2026-02-22T17:21:00Z",
|
|
3773
|
+
"updated_at": "2026-02-22T17:21:00Z",
|
|
3774
|
+
"deleted_at": "2026-02-22T17:21:00Z"
|
|
3775
|
+
}
|
|
3776
|
+
],
|
|
3777
|
+
"links": {
|
|
3778
|
+
"first": "example",
|
|
3779
|
+
"last": "example",
|
|
3780
|
+
"prev": "example",
|
|
3781
|
+
"next": "example"
|
|
3782
|
+
},
|
|
3783
|
+
"meta": {
|
|
3784
|
+
"current_page": 1,
|
|
3785
|
+
"from": 1,
|
|
3786
|
+
"last_page": 1,
|
|
3787
|
+
"links": [
|
|
3788
|
+
{
|
|
3789
|
+
"url": "https://agentmc.example.com/docs/incident-123",
|
|
3790
|
+
"label": "example",
|
|
3791
|
+
"active": true
|
|
3792
|
+
}
|
|
3793
|
+
],
|
|
3794
|
+
"path": "example",
|
|
3795
|
+
"per_page": 25,
|
|
3796
|
+
"total": 0
|
|
3797
|
+
}
|
|
3798
|
+
}
|
|
3799
|
+
},
|
|
3800
|
+
{
|
|
3801
|
+
"status": "401",
|
|
3802
|
+
"mediaType": "application/json",
|
|
3803
|
+
"description": "Missing or invalid credentials.",
|
|
3804
|
+
"hasContent": true,
|
|
3805
|
+
"example": {
|
|
3806
|
+
"error": {
|
|
3807
|
+
"code": "validation.failed",
|
|
3808
|
+
"message": "Validation failed.",
|
|
3809
|
+
"details": {
|
|
3810
|
+
"fields": {
|
|
3811
|
+
"title": [
|
|
3812
|
+
"The title field is required."
|
|
3813
|
+
]
|
|
3814
|
+
}
|
|
3815
|
+
}
|
|
3816
|
+
}
|
|
3817
|
+
}
|
|
3818
|
+
},
|
|
3819
|
+
{
|
|
3820
|
+
"status": "403",
|
|
3821
|
+
"mediaType": "application/json",
|
|
3822
|
+
"description": "Forbidden.",
|
|
3823
|
+
"hasContent": true,
|
|
3824
|
+
"example": {
|
|
3825
|
+
"error": {
|
|
3826
|
+
"code": "validation.failed",
|
|
3827
|
+
"message": "Validation failed.",
|
|
3828
|
+
"details": {
|
|
3829
|
+
"fields": {
|
|
3830
|
+
"title": [
|
|
3831
|
+
"The title field is required."
|
|
3832
|
+
]
|
|
3833
|
+
}
|
|
3834
|
+
}
|
|
3835
|
+
}
|
|
3836
|
+
}
|
|
3837
|
+
}
|
|
3838
|
+
]
|
|
3839
|
+
},
|
|
3629
3840
|
{
|
|
3630
3841
|
"operationId": "listHosts",
|
|
3631
3842
|
"method": "get",
|
|
@@ -3888,7 +4099,7 @@ var operations = [
|
|
|
3888
4099
|
"operationId": "listNotifications",
|
|
3889
4100
|
"method": "get",
|
|
3890
4101
|
"path": "/notifications",
|
|
3891
|
-
"summary": "List workspace notifications (mentions and
|
|
4102
|
+
"summary": "List workspace notifications (mentions, assignments, and comment activity) for the authenticated principal.",
|
|
3892
4103
|
"description": "",
|
|
3893
4104
|
"tags": [
|
|
3894
4105
|
"Notifications"
|
|
@@ -4807,13 +5018,13 @@ var operations = [
|
|
|
4807
5018
|
]
|
|
4808
5019
|
},
|
|
4809
5020
|
{
|
|
4810
|
-
"operationId": "
|
|
5021
|
+
"operationId": "showCalendarItem",
|
|
4811
5022
|
"method": "get",
|
|
4812
|
-
"path": "/
|
|
4813
|
-
"summary": "Show one
|
|
4814
|
-
"description": "
|
|
5023
|
+
"path": "/calendar/items/{item}",
|
|
5024
|
+
"summary": "Show one calendar item.",
|
|
5025
|
+
"description": "",
|
|
4815
5026
|
"tags": [
|
|
4816
|
-
"
|
|
5027
|
+
"Calendar"
|
|
4817
5028
|
],
|
|
4818
5029
|
"security": [
|
|
4819
5030
|
[
|
|
@@ -4828,18 +5039,11 @@ var operations = [
|
|
|
4828
5039
|
],
|
|
4829
5040
|
"parameters": [
|
|
4830
5041
|
{
|
|
4831
|
-
"name": "
|
|
5042
|
+
"name": "item",
|
|
4832
5043
|
"in": "path",
|
|
4833
5044
|
"required": true,
|
|
4834
|
-
"description": "
|
|
4835
|
-
"example":
|
|
4836
|
-
},
|
|
4837
|
-
{
|
|
4838
|
-
"name": "agents_per_page",
|
|
4839
|
-
"in": "query",
|
|
4840
|
-
"required": false,
|
|
4841
|
-
"description": "Agents per page.",
|
|
4842
|
-
"example": 25
|
|
5045
|
+
"description": "Calendar item identifier.",
|
|
5046
|
+
"example": 1
|
|
4843
5047
|
}
|
|
4844
5048
|
],
|
|
4845
5049
|
"requestBodyRequired": false,
|
|
@@ -4848,53 +5052,40 @@ var operations = [
|
|
|
4848
5052
|
{
|
|
4849
5053
|
"status": "200",
|
|
4850
5054
|
"mediaType": "application/json",
|
|
4851
|
-
"description": "
|
|
5055
|
+
"description": "Calendar item returned.",
|
|
4852
5056
|
"hasContent": true,
|
|
4853
5057
|
"example": {
|
|
4854
5058
|
"data": {
|
|
4855
5059
|
"id": 42,
|
|
4856
|
-
"
|
|
4857
|
-
"
|
|
4858
|
-
"
|
|
4859
|
-
"
|
|
4860
|
-
"
|
|
4861
|
-
"
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
4870
|
-
|
|
5060
|
+
"workspace_id": 42,
|
|
5061
|
+
"type": "event",
|
|
5062
|
+
"title": "Example Title",
|
|
5063
|
+
"description": "Example description text.",
|
|
5064
|
+
"start_at": "2026-02-22T17:21:00Z",
|
|
5065
|
+
"end_at": "2026-02-22T17:21:00Z",
|
|
5066
|
+
"due_at": "2026-02-22T17:21:00Z",
|
|
5067
|
+
"all_day": false,
|
|
5068
|
+
"location": "example",
|
|
5069
|
+
"timezone": "America/Los_Angeles",
|
|
5070
|
+
"status": "todo",
|
|
5071
|
+
"priority": "low",
|
|
5072
|
+
"visibility": "workspace",
|
|
5073
|
+
"created_by": 1,
|
|
5074
|
+
"updated_by": 1,
|
|
5075
|
+
"assignees": [
|
|
5076
|
+
{
|
|
5077
|
+
"id": 42,
|
|
5078
|
+
"assignee_type": "user",
|
|
5079
|
+
"assignee_id": 42,
|
|
5080
|
+
"role": "owner",
|
|
5081
|
+
"name": "Example Name",
|
|
5082
|
+
"created_at": "2026-02-22T17:21:00Z"
|
|
4871
5083
|
}
|
|
4872
|
-
|
|
4873
|
-
"
|
|
4874
|
-
"agents_total": 1,
|
|
4875
|
-
"agents_online": 1,
|
|
5084
|
+
],
|
|
5085
|
+
"comments_count": 1,
|
|
4876
5086
|
"created_at": "2026-02-22T17:21:00Z",
|
|
4877
|
-
"updated_at": "2026-02-22T17:21:00Z"
|
|
4878
|
-
|
|
4879
|
-
"agents": [
|
|
4880
|
-
{
|
|
4881
|
-
"id": 42,
|
|
4882
|
-
"workspace_id": 42,
|
|
4883
|
-
"host_id": 42,
|
|
4884
|
-
"name": "Example Name",
|
|
4885
|
-
"type": "example",
|
|
4886
|
-
"status": "pending",
|
|
4887
|
-
"tasks_count": 0,
|
|
4888
|
-
"last_seen_at": "2026-02-22T17:21:00Z",
|
|
4889
|
-
"created_at": "2026-02-22T17:21:00Z",
|
|
4890
|
-
"updated_at": "2026-02-22T17:21:00Z"
|
|
4891
|
-
}
|
|
4892
|
-
],
|
|
4893
|
-
"agents_meta": {
|
|
4894
|
-
"current_page": 1,
|
|
4895
|
-
"last_page": 1,
|
|
4896
|
-
"per_page": 25,
|
|
4897
|
-
"total": 0
|
|
5087
|
+
"updated_at": "2026-02-22T17:21:00Z",
|
|
5088
|
+
"deleted_at": "2026-02-22T17:21:00Z"
|
|
4898
5089
|
}
|
|
4899
5090
|
}
|
|
4900
5091
|
},
|
|
@@ -4958,13 +5149,13 @@ var operations = [
|
|
|
4958
5149
|
]
|
|
4959
5150
|
},
|
|
4960
5151
|
{
|
|
4961
|
-
"operationId": "
|
|
5152
|
+
"operationId": "showHost",
|
|
4962
5153
|
"method": "get",
|
|
4963
|
-
"path": "/
|
|
4964
|
-
"summary": "Show one
|
|
4965
|
-
"description": "",
|
|
5154
|
+
"path": "/hosts/{id}",
|
|
5155
|
+
"summary": "Show one host.",
|
|
5156
|
+
"description": "Returns one host record including id/team/name/fingerprint, status + last_seen_at, metadata snapshot, and assigned-agent totals.",
|
|
4966
5157
|
"tags": [
|
|
4967
|
-
"
|
|
5158
|
+
"Hosts"
|
|
4968
5159
|
],
|
|
4969
5160
|
"security": [
|
|
4970
5161
|
[
|
|
@@ -4979,11 +5170,18 @@ var operations = [
|
|
|
4979
5170
|
],
|
|
4980
5171
|
"parameters": [
|
|
4981
5172
|
{
|
|
4982
|
-
"name": "
|
|
5173
|
+
"name": "id",
|
|
4983
5174
|
"in": "path",
|
|
4984
5175
|
"required": true,
|
|
4985
|
-
"description": "
|
|
4986
|
-
"example":
|
|
5176
|
+
"description": "Host identifier.",
|
|
5177
|
+
"example": 42
|
|
5178
|
+
},
|
|
5179
|
+
{
|
|
5180
|
+
"name": "agents_per_page",
|
|
5181
|
+
"in": "query",
|
|
5182
|
+
"required": false,
|
|
5183
|
+
"description": "Agents per page.",
|
|
5184
|
+
"example": 25
|
|
4987
5185
|
}
|
|
4988
5186
|
],
|
|
4989
5187
|
"requestBodyRequired": false,
|
|
@@ -4992,25 +5190,53 @@ var operations = [
|
|
|
4992
5190
|
{
|
|
4993
5191
|
"status": "200",
|
|
4994
5192
|
"mediaType": "application/json",
|
|
4995
|
-
"description": "
|
|
5193
|
+
"description": "Host returned.",
|
|
4996
5194
|
"hasContent": true,
|
|
4997
5195
|
"example": {
|
|
4998
5196
|
"data": {
|
|
4999
5197
|
"id": 42,
|
|
5000
5198
|
"team_id": 42,
|
|
5001
|
-
"
|
|
5002
|
-
"
|
|
5003
|
-
"
|
|
5004
|
-
"
|
|
5005
|
-
"
|
|
5006
|
-
|
|
5007
|
-
|
|
5199
|
+
"name": "Example Name",
|
|
5200
|
+
"fingerprint": "a3f56f330f311a2159f8c101eaf1439a29f1d57f007375d56aa79f304bc4f112",
|
|
5201
|
+
"status": "online",
|
|
5202
|
+
"last_seen_at": "2026-02-22T17:21:00Z",
|
|
5203
|
+
"meta": {
|
|
5204
|
+
"hostname": "worker-01",
|
|
5205
|
+
"ip": "10.0.2.15",
|
|
5206
|
+
"os": "Ubuntu",
|
|
5207
|
+
"arch": "x86_64",
|
|
5208
|
+
"cpu": "Intel Xeon",
|
|
5209
|
+
"ram_gb": 32,
|
|
5210
|
+
"runtime": {
|
|
5211
|
+
"name": "openclaw",
|
|
5212
|
+
"version": "1.14.2"
|
|
5213
|
+
}
|
|
5214
|
+
},
|
|
5008
5215
|
"created_by_user_id": 42,
|
|
5009
|
-
"
|
|
5010
|
-
"
|
|
5011
|
-
"assignee_type": "human",
|
|
5216
|
+
"agents_total": 1,
|
|
5217
|
+
"agents_online": 1,
|
|
5012
5218
|
"created_at": "2026-02-22T17:21:00Z",
|
|
5013
5219
|
"updated_at": "2026-02-22T17:21:00Z"
|
|
5220
|
+
},
|
|
5221
|
+
"agents": [
|
|
5222
|
+
{
|
|
5223
|
+
"id": 42,
|
|
5224
|
+
"workspace_id": 42,
|
|
5225
|
+
"host_id": 42,
|
|
5226
|
+
"name": "Example Name",
|
|
5227
|
+
"type": "example",
|
|
5228
|
+
"status": "pending",
|
|
5229
|
+
"tasks_count": 0,
|
|
5230
|
+
"last_seen_at": "2026-02-22T17:21:00Z",
|
|
5231
|
+
"created_at": "2026-02-22T17:21:00Z",
|
|
5232
|
+
"updated_at": "2026-02-22T17:21:00Z"
|
|
5233
|
+
}
|
|
5234
|
+
],
|
|
5235
|
+
"agents_meta": {
|
|
5236
|
+
"current_page": 1,
|
|
5237
|
+
"last_page": 1,
|
|
5238
|
+
"per_page": 25,
|
|
5239
|
+
"total": 0
|
|
5014
5240
|
}
|
|
5015
5241
|
}
|
|
5016
5242
|
},
|
|
@@ -5074,13 +5300,13 @@ var operations = [
|
|
|
5074
5300
|
]
|
|
5075
5301
|
},
|
|
5076
5302
|
{
|
|
5077
|
-
"operationId": "
|
|
5303
|
+
"operationId": "showTask",
|
|
5078
5304
|
"method": "get",
|
|
5079
|
-
"path": "/
|
|
5080
|
-
"summary": "Show one
|
|
5305
|
+
"path": "/tasks/{task}",
|
|
5306
|
+
"summary": "Show one task.",
|
|
5081
5307
|
"description": "",
|
|
5082
5308
|
"tags": [
|
|
5083
|
-
"
|
|
5309
|
+
"Tasks"
|
|
5084
5310
|
],
|
|
5085
5311
|
"security": [
|
|
5086
5312
|
[
|
|
@@ -5095,10 +5321,10 @@ var operations = [
|
|
|
5095
5321
|
],
|
|
5096
5322
|
"parameters": [
|
|
5097
5323
|
{
|
|
5098
|
-
"name": "
|
|
5324
|
+
"name": "task",
|
|
5099
5325
|
"in": "path",
|
|
5100
5326
|
"required": true,
|
|
5101
|
-
"description": "
|
|
5327
|
+
"description": "Task identifier.",
|
|
5102
5328
|
"example": 1
|
|
5103
5329
|
}
|
|
5104
5330
|
],
|
|
@@ -5108,50 +5334,25 @@ var operations = [
|
|
|
5108
5334
|
{
|
|
5109
5335
|
"status": "200",
|
|
5110
5336
|
"mediaType": "application/json",
|
|
5111
|
-
"description": "
|
|
5337
|
+
"description": "Task returned.",
|
|
5112
5338
|
"hasContent": true,
|
|
5113
5339
|
"example": {
|
|
5114
5340
|
"data": {
|
|
5115
5341
|
"id": 42,
|
|
5116
|
-
"
|
|
5117
|
-
"
|
|
5342
|
+
"team_id": 42,
|
|
5343
|
+
"board_id": 42,
|
|
5344
|
+
"column_id": 42,
|
|
5118
5345
|
"title": "Example Title",
|
|
5119
5346
|
"description": "Example description text.",
|
|
5120
|
-
"
|
|
5121
|
-
"
|
|
5347
|
+
"status": "backlog",
|
|
5348
|
+
"position": 1,
|
|
5122
5349
|
"due_at": "2026-02-22T17:21:00Z",
|
|
5123
|
-
"
|
|
5124
|
-
"
|
|
5125
|
-
"
|
|
5126
|
-
"
|
|
5127
|
-
"priority": "low",
|
|
5128
|
-
"visibility": "workspace",
|
|
5129
|
-
"created_by": 1,
|
|
5130
|
-
"updated_by": 1,
|
|
5131
|
-
"assignees": [
|
|
5132
|
-
{
|
|
5133
|
-
"id": 42,
|
|
5134
|
-
"assignee_type": "user",
|
|
5135
|
-
"assignee_id": 42,
|
|
5136
|
-
"role": "owner",
|
|
5137
|
-
"name": "Example Name",
|
|
5138
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
5139
|
-
}
|
|
5140
|
-
],
|
|
5141
|
-
"links": [
|
|
5142
|
-
{
|
|
5143
|
-
"id": 42,
|
|
5144
|
-
"link_type": "example",
|
|
5145
|
-
"link_id": 42,
|
|
5146
|
-
"url": "https://agentmc.example.com/docs/incident-123",
|
|
5147
|
-
"title": "Example Title",
|
|
5148
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
5149
|
-
}
|
|
5150
|
-
],
|
|
5151
|
-
"comments_count": 1,
|
|
5350
|
+
"created_by_user_id": 42,
|
|
5351
|
+
"assigned_to_user_id": 42,
|
|
5352
|
+
"assigned_to_agent_id": 42,
|
|
5353
|
+
"assignee_type": "human",
|
|
5152
5354
|
"created_at": "2026-02-22T17:21:00Z",
|
|
5153
|
-
"updated_at": "2026-02-22T17:21:00Z"
|
|
5154
|
-
"deleted_at": "2026-02-22T17:21:00Z"
|
|
5355
|
+
"updated_at": "2026-02-22T17:21:00Z"
|
|
5155
5356
|
}
|
|
5156
5357
|
}
|
|
5157
5358
|
},
|
|
@@ -5695,13 +5896,13 @@ var operations = [
|
|
|
5695
5896
|
]
|
|
5696
5897
|
},
|
|
5697
5898
|
{
|
|
5698
|
-
"operationId": "
|
|
5699
|
-
"method": "
|
|
5700
|
-
"path": "/
|
|
5701
|
-
"summary": "Update a
|
|
5899
|
+
"operationId": "updateCalendarItem",
|
|
5900
|
+
"method": "put",
|
|
5901
|
+
"path": "/calendar/items/{item}",
|
|
5902
|
+
"summary": "Update a calendar item.",
|
|
5702
5903
|
"description": "",
|
|
5703
5904
|
"tags": [
|
|
5704
|
-
"
|
|
5905
|
+
"Calendar"
|
|
5705
5906
|
],
|
|
5706
5907
|
"security": [
|
|
5707
5908
|
[
|
|
@@ -5716,10 +5917,10 @@ var operations = [
|
|
|
5716
5917
|
],
|
|
5717
5918
|
"parameters": [
|
|
5718
5919
|
{
|
|
5719
|
-
"name": "
|
|
5920
|
+
"name": "item",
|
|
5720
5921
|
"in": "path",
|
|
5721
5922
|
"required": true,
|
|
5722
|
-
"description": "
|
|
5923
|
+
"description": "Calendar item identifier.",
|
|
5723
5924
|
"example": 1
|
|
5724
5925
|
}
|
|
5725
5926
|
],
|
|
@@ -5728,10 +5929,12 @@ var operations = [
|
|
|
5728
5929
|
{
|
|
5729
5930
|
"mediaType": "application/json",
|
|
5730
5931
|
"example": {
|
|
5731
|
-
"title": "
|
|
5732
|
-
"
|
|
5733
|
-
"due_at": "2026-02-
|
|
5734
|
-
"
|
|
5932
|
+
"title": "Review outage timeline",
|
|
5933
|
+
"description": "Add links to root-cause analysis notes.",
|
|
5934
|
+
"due_at": "2026-02-24T11:00:00Z",
|
|
5935
|
+
"status": "in_progress",
|
|
5936
|
+
"priority": "urgent",
|
|
5937
|
+
"visibility": "workspace"
|
|
5735
5938
|
}
|
|
5736
5939
|
}
|
|
5737
5940
|
],
|
|
@@ -5739,29 +5942,44 @@ var operations = [
|
|
|
5739
5942
|
{
|
|
5740
5943
|
"status": "200",
|
|
5741
5944
|
"mediaType": "application/json",
|
|
5742
|
-
"description": "
|
|
5945
|
+
"description": "Calendar item updated.",
|
|
5743
5946
|
"hasContent": true,
|
|
5744
5947
|
"example": {
|
|
5745
5948
|
"data": {
|
|
5746
5949
|
"id": 42,
|
|
5747
|
-
"
|
|
5748
|
-
"
|
|
5749
|
-
"column_id": 42,
|
|
5950
|
+
"workspace_id": 42,
|
|
5951
|
+
"type": "event",
|
|
5750
5952
|
"title": "Example Title",
|
|
5751
5953
|
"description": "Example description text.",
|
|
5752
|
-
"
|
|
5753
|
-
"
|
|
5954
|
+
"start_at": "2026-02-22T17:21:00Z",
|
|
5955
|
+
"end_at": "2026-02-22T17:21:00Z",
|
|
5754
5956
|
"due_at": "2026-02-22T17:21:00Z",
|
|
5755
|
-
"
|
|
5756
|
-
"
|
|
5757
|
-
"
|
|
5758
|
-
"
|
|
5759
|
-
"
|
|
5760
|
-
"
|
|
5761
|
-
|
|
5762
|
-
|
|
5763
|
-
|
|
5764
|
-
|
|
5957
|
+
"all_day": false,
|
|
5958
|
+
"location": "example",
|
|
5959
|
+
"timezone": "America/Los_Angeles",
|
|
5960
|
+
"status": "todo",
|
|
5961
|
+
"priority": "low",
|
|
5962
|
+
"visibility": "workspace",
|
|
5963
|
+
"created_by": 1,
|
|
5964
|
+
"updated_by": 1,
|
|
5965
|
+
"assignees": [
|
|
5966
|
+
{
|
|
5967
|
+
"id": 42,
|
|
5968
|
+
"assignee_type": "user",
|
|
5969
|
+
"assignee_id": 42,
|
|
5970
|
+
"role": "owner",
|
|
5971
|
+
"name": "Example Name",
|
|
5972
|
+
"created_at": "2026-02-22T17:21:00Z"
|
|
5973
|
+
}
|
|
5974
|
+
],
|
|
5975
|
+
"comments_count": 1,
|
|
5976
|
+
"created_at": "2026-02-22T17:21:00Z",
|
|
5977
|
+
"updated_at": "2026-02-22T17:21:00Z",
|
|
5978
|
+
"deleted_at": "2026-02-22T17:21:00Z"
|
|
5979
|
+
}
|
|
5980
|
+
}
|
|
5981
|
+
},
|
|
5982
|
+
{
|
|
5765
5983
|
"status": "401",
|
|
5766
5984
|
"mediaType": "application/json",
|
|
5767
5985
|
"description": "Missing or invalid credentials.",
|
|
@@ -5840,10 +6058,10 @@ var operations = [
|
|
|
5840
6058
|
]
|
|
5841
6059
|
},
|
|
5842
6060
|
{
|
|
5843
|
-
"operationId": "
|
|
6061
|
+
"operationId": "updateTask",
|
|
5844
6062
|
"method": "patch",
|
|
5845
|
-
"path": "/tasks/{task}
|
|
5846
|
-
"summary": "Update
|
|
6063
|
+
"path": "/tasks/{task}",
|
|
6064
|
+
"summary": "Update a task.",
|
|
5847
6065
|
"description": "",
|
|
5848
6066
|
"tags": [
|
|
5849
6067
|
"Tasks"
|
|
@@ -5866,21 +6084,17 @@ var operations = [
|
|
|
5866
6084
|
"required": true,
|
|
5867
6085
|
"description": "Task identifier.",
|
|
5868
6086
|
"example": 1
|
|
5869
|
-
},
|
|
5870
|
-
{
|
|
5871
|
-
"name": "comment",
|
|
5872
|
-
"in": "path",
|
|
5873
|
-
"required": true,
|
|
5874
|
-
"description": "Task comment identifier.",
|
|
5875
|
-
"example": 1
|
|
5876
6087
|
}
|
|
5877
6088
|
],
|
|
5878
|
-
"requestBodyRequired":
|
|
6089
|
+
"requestBodyRequired": false,
|
|
5879
6090
|
"requestExamples": [
|
|
5880
6091
|
{
|
|
5881
6092
|
"mediaType": "application/json",
|
|
5882
6093
|
"example": {
|
|
5883
|
-
"
|
|
6094
|
+
"title": "Draft post-incident summary",
|
|
6095
|
+
"status": "review",
|
|
6096
|
+
"due_at": "2026-02-24T19:00:00Z",
|
|
6097
|
+
"assigned_to_agent_id": 42
|
|
5884
6098
|
}
|
|
5885
6099
|
}
|
|
5886
6100
|
],
|
|
@@ -5888,28 +6102,25 @@ var operations = [
|
|
|
5888
6102
|
{
|
|
5889
6103
|
"status": "200",
|
|
5890
6104
|
"mediaType": "application/json",
|
|
5891
|
-
"description": "Task
|
|
6105
|
+
"description": "Task updated.",
|
|
5892
6106
|
"hasContent": true,
|
|
5893
6107
|
"example": {
|
|
5894
6108
|
"data": {
|
|
5895
6109
|
"id": 42,
|
|
5896
|
-
"
|
|
5897
|
-
"
|
|
5898
|
-
"
|
|
5899
|
-
"
|
|
5900
|
-
"
|
|
5901
|
-
"
|
|
5902
|
-
|
|
5903
|
-
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
],
|
|
5911
|
-
"edited_at": "2026-02-22T17:21:00Z",
|
|
5912
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
6110
|
+
"team_id": 42,
|
|
6111
|
+
"board_id": 42,
|
|
6112
|
+
"column_id": 42,
|
|
6113
|
+
"title": "Example Title",
|
|
6114
|
+
"description": "Example description text.",
|
|
6115
|
+
"status": "backlog",
|
|
6116
|
+
"position": 1,
|
|
6117
|
+
"due_at": "2026-02-22T17:21:00Z",
|
|
6118
|
+
"created_by_user_id": 42,
|
|
6119
|
+
"assigned_to_user_id": 42,
|
|
6120
|
+
"assigned_to_agent_id": 42,
|
|
6121
|
+
"assignee_type": "human",
|
|
6122
|
+
"created_at": "2026-02-22T17:21:00Z",
|
|
6123
|
+
"updated_at": "2026-02-22T17:21:00Z"
|
|
5913
6124
|
}
|
|
5914
6125
|
}
|
|
5915
6126
|
},
|
|
@@ -5992,13 +6203,13 @@ var operations = [
|
|
|
5992
6203
|
]
|
|
5993
6204
|
},
|
|
5994
6205
|
{
|
|
5995
|
-
"operationId": "
|
|
5996
|
-
"method": "
|
|
5997
|
-
"path": "/
|
|
5998
|
-
"summary": "Update
|
|
6206
|
+
"operationId": "updateTaskComment",
|
|
6207
|
+
"method": "patch",
|
|
6208
|
+
"path": "/tasks/{task}/comments/{comment}",
|
|
6209
|
+
"summary": "Update one existing task comment.",
|
|
5999
6210
|
"description": "",
|
|
6000
6211
|
"tags": [
|
|
6001
|
-
"
|
|
6212
|
+
"Tasks"
|
|
6002
6213
|
],
|
|
6003
6214
|
"security": [
|
|
6004
6215
|
[
|
|
@@ -6013,24 +6224,26 @@ var operations = [
|
|
|
6013
6224
|
],
|
|
6014
6225
|
"parameters": [
|
|
6015
6226
|
{
|
|
6016
|
-
"name": "
|
|
6227
|
+
"name": "task",
|
|
6017
6228
|
"in": "path",
|
|
6018
6229
|
"required": true,
|
|
6019
|
-
"description": "
|
|
6230
|
+
"description": "Task identifier.",
|
|
6231
|
+
"example": 1
|
|
6232
|
+
},
|
|
6233
|
+
{
|
|
6234
|
+
"name": "comment",
|
|
6235
|
+
"in": "path",
|
|
6236
|
+
"required": true,
|
|
6237
|
+
"description": "Task comment identifier.",
|
|
6020
6238
|
"example": 1
|
|
6021
6239
|
}
|
|
6022
6240
|
],
|
|
6023
|
-
"requestBodyRequired":
|
|
6241
|
+
"requestBodyRequired": true,
|
|
6024
6242
|
"requestExamples": [
|
|
6025
6243
|
{
|
|
6026
6244
|
"mediaType": "application/json",
|
|
6027
6245
|
"example": {
|
|
6028
|
-
"
|
|
6029
|
-
"description": "Add links to root-cause analysis notes.",
|
|
6030
|
-
"due_at": "2026-02-24T11:00:00Z",
|
|
6031
|
-
"status": "in_progress",
|
|
6032
|
-
"priority": "urgent",
|
|
6033
|
-
"visibility": "workspace"
|
|
6246
|
+
"body": "Updated handoff note with the latest timeline and log links."
|
|
6034
6247
|
}
|
|
6035
6248
|
}
|
|
6036
6249
|
],
|
|
@@ -6038,50 +6251,28 @@ var operations = [
|
|
|
6038
6251
|
{
|
|
6039
6252
|
"status": "200",
|
|
6040
6253
|
"mediaType": "application/json",
|
|
6041
|
-
"description": "
|
|
6254
|
+
"description": "Task comment updated.",
|
|
6042
6255
|
"hasContent": true,
|
|
6043
6256
|
"example": {
|
|
6044
6257
|
"data": {
|
|
6045
6258
|
"id": 42,
|
|
6046
|
-
"
|
|
6047
|
-
"
|
|
6048
|
-
"
|
|
6049
|
-
"
|
|
6050
|
-
"
|
|
6051
|
-
"
|
|
6052
|
-
"due_at": "2026-02-22T17:21:00Z",
|
|
6053
|
-
"all_day": false,
|
|
6054
|
-
"location": "example",
|
|
6055
|
-
"timezone": "America/Los_Angeles",
|
|
6056
|
-
"status": "todo",
|
|
6057
|
-
"priority": "low",
|
|
6058
|
-
"visibility": "workspace",
|
|
6059
|
-
"created_by": 1,
|
|
6060
|
-
"updated_by": 1,
|
|
6061
|
-
"assignees": [
|
|
6062
|
-
{
|
|
6063
|
-
"id": 42,
|
|
6064
|
-
"assignee_type": "user",
|
|
6065
|
-
"assignee_id": 42,
|
|
6066
|
-
"role": "owner",
|
|
6067
|
-
"name": "Example Name",
|
|
6068
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
6069
|
-
}
|
|
6070
|
-
],
|
|
6071
|
-
"links": [
|
|
6259
|
+
"task_id": 42,
|
|
6260
|
+
"actor_type": "user",
|
|
6261
|
+
"actor_id": 42,
|
|
6262
|
+
"actor_name": "Example Name",
|
|
6263
|
+
"body": "Example content.",
|
|
6264
|
+
"mentions": [
|
|
6072
6265
|
{
|
|
6266
|
+
"key": "example",
|
|
6267
|
+
"type": "user",
|
|
6073
6268
|
"id": 42,
|
|
6074
|
-
"
|
|
6075
|
-
"
|
|
6076
|
-
"
|
|
6077
|
-
"title": "Example Title",
|
|
6078
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
6269
|
+
"label": "example",
|
|
6270
|
+
"handle": "example",
|
|
6271
|
+
"token": "example"
|
|
6079
6272
|
}
|
|
6080
6273
|
],
|
|
6081
|
-
"
|
|
6082
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
6083
|
-
"updated_at": "2026-02-22T17:21:00Z",
|
|
6084
|
-
"deleted_at": "2026-02-22T17:21:00Z"
|
|
6274
|
+
"edited_at": "2026-02-22T17:21:00Z",
|
|
6275
|
+
"created_at": "2026-02-22T17:21:00Z"
|
|
6085
6276
|
}
|
|
6086
6277
|
}
|
|
6087
6278
|
},
|
|
@@ -6162,207 +6353,6 @@ var operations = [
|
|
|
6162
6353
|
}
|
|
6163
6354
|
}
|
|
6164
6355
|
]
|
|
6165
|
-
},
|
|
6166
|
-
{
|
|
6167
|
-
"operationId": "workspaceCalendar",
|
|
6168
|
-
"method": "get",
|
|
6169
|
-
"path": "/calendar",
|
|
6170
|
-
"summary": "List calendar items.",
|
|
6171
|
-
"description": "",
|
|
6172
|
-
"tags": [
|
|
6173
|
-
"Calendar"
|
|
6174
|
-
],
|
|
6175
|
-
"security": [
|
|
6176
|
-
[
|
|
6177
|
-
"ApiKeyAuth"
|
|
6178
|
-
],
|
|
6179
|
-
[
|
|
6180
|
-
"AgentBearerAuth"
|
|
6181
|
-
],
|
|
6182
|
-
[
|
|
6183
|
-
"BearerAuth"
|
|
6184
|
-
]
|
|
6185
|
-
],
|
|
6186
|
-
"parameters": [
|
|
6187
|
-
{
|
|
6188
|
-
"name": "view",
|
|
6189
|
-
"in": "query",
|
|
6190
|
-
"required": false,
|
|
6191
|
-
"description": "Allowed values: month, week, list.",
|
|
6192
|
-
"example": "month"
|
|
6193
|
-
},
|
|
6194
|
-
{
|
|
6195
|
-
"name": "start",
|
|
6196
|
-
"in": "query",
|
|
6197
|
-
"required": false,
|
|
6198
|
-
"description": "Start.",
|
|
6199
|
-
"example": "2026-02-22T17:21:00Z"
|
|
6200
|
-
},
|
|
6201
|
-
{
|
|
6202
|
-
"name": "end",
|
|
6203
|
-
"in": "query",
|
|
6204
|
-
"required": false,
|
|
6205
|
-
"description": "End.",
|
|
6206
|
-
"example": "2026-02-22T17:21:00Z"
|
|
6207
|
-
},
|
|
6208
|
-
{
|
|
6209
|
-
"name": "type",
|
|
6210
|
-
"in": "query",
|
|
6211
|
-
"required": false,
|
|
6212
|
-
"description": "Type discriminator for this record. Allowed values: event, task.",
|
|
6213
|
-
"example": "event"
|
|
6214
|
-
},
|
|
6215
|
-
{
|
|
6216
|
-
"name": "status",
|
|
6217
|
-
"in": "query",
|
|
6218
|
-
"required": false,
|
|
6219
|
-
"description": "Current lifecycle status for this record. Allowed values: todo, in_progress, blocked, done, canceled.",
|
|
6220
|
-
"example": "todo"
|
|
6221
|
-
},
|
|
6222
|
-
{
|
|
6223
|
-
"name": "priority",
|
|
6224
|
-
"in": "query",
|
|
6225
|
-
"required": false,
|
|
6226
|
-
"description": "Priority level for this record. Allowed values: low, medium, high, urgent.",
|
|
6227
|
-
"example": "low"
|
|
6228
|
-
},
|
|
6229
|
-
{
|
|
6230
|
-
"name": "assignee",
|
|
6231
|
-
"in": "query",
|
|
6232
|
-
"required": false,
|
|
6233
|
-
"description": "Assignee.",
|
|
6234
|
-
"example": "example"
|
|
6235
|
-
},
|
|
6236
|
-
{
|
|
6237
|
-
"name": "q",
|
|
6238
|
-
"in": "query",
|
|
6239
|
-
"required": false,
|
|
6240
|
-
"description": "Case-insensitive text search query.",
|
|
6241
|
-
"example": "retro"
|
|
6242
|
-
},
|
|
6243
|
-
{
|
|
6244
|
-
"name": "per_page",
|
|
6245
|
-
"in": "query",
|
|
6246
|
-
"required": false,
|
|
6247
|
-
"description": "Page size for paginated responses.",
|
|
6248
|
-
"example": 25
|
|
6249
|
-
}
|
|
6250
|
-
],
|
|
6251
|
-
"requestBodyRequired": false,
|
|
6252
|
-
"requestExamples": [],
|
|
6253
|
-
"responses": [
|
|
6254
|
-
{
|
|
6255
|
-
"status": "200",
|
|
6256
|
-
"mediaType": "application/json",
|
|
6257
|
-
"description": "Calendar items returned.",
|
|
6258
|
-
"hasContent": true,
|
|
6259
|
-
"example": {
|
|
6260
|
-
"data": [
|
|
6261
|
-
{
|
|
6262
|
-
"id": 42,
|
|
6263
|
-
"workspace_id": 42,
|
|
6264
|
-
"type": "event",
|
|
6265
|
-
"title": "Example Title",
|
|
6266
|
-
"description": "Example description text.",
|
|
6267
|
-
"start_at": "2026-02-22T17:21:00Z",
|
|
6268
|
-
"end_at": "2026-02-22T17:21:00Z",
|
|
6269
|
-
"due_at": "2026-02-22T17:21:00Z",
|
|
6270
|
-
"all_day": false,
|
|
6271
|
-
"location": "example",
|
|
6272
|
-
"timezone": "America/Los_Angeles",
|
|
6273
|
-
"status": "todo",
|
|
6274
|
-
"priority": "low",
|
|
6275
|
-
"visibility": "workspace",
|
|
6276
|
-
"created_by": 1,
|
|
6277
|
-
"updated_by": 1,
|
|
6278
|
-
"assignees": [
|
|
6279
|
-
{
|
|
6280
|
-
"id": 42,
|
|
6281
|
-
"assignee_type": "user",
|
|
6282
|
-
"assignee_id": 42,
|
|
6283
|
-
"role": "owner",
|
|
6284
|
-
"name": "Example Name",
|
|
6285
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
6286
|
-
}
|
|
6287
|
-
],
|
|
6288
|
-
"links": [
|
|
6289
|
-
{
|
|
6290
|
-
"id": 42,
|
|
6291
|
-
"link_type": "example",
|
|
6292
|
-
"link_id": 42,
|
|
6293
|
-
"url": "https://agentmc.example.com/docs/incident-123",
|
|
6294
|
-
"title": "Example Title",
|
|
6295
|
-
"created_at": "2026-02-22T17:21:00Z"
|
|
6296
|
-
}
|
|
6297
|
-
],
|
|
6298
|
-
"comments_count": 1,
|
|
6299
|
-
"created_at": "2026-02-22T17:21:00Z",
|
|
6300
|
-
"updated_at": "2026-02-22T17:21:00Z",
|
|
6301
|
-
"deleted_at": "2026-02-22T17:21:00Z"
|
|
6302
|
-
}
|
|
6303
|
-
],
|
|
6304
|
-
"links": {
|
|
6305
|
-
"first": "example",
|
|
6306
|
-
"last": "example",
|
|
6307
|
-
"prev": "example",
|
|
6308
|
-
"next": "example"
|
|
6309
|
-
},
|
|
6310
|
-
"meta": {
|
|
6311
|
-
"current_page": 1,
|
|
6312
|
-
"from": 1,
|
|
6313
|
-
"last_page": 1,
|
|
6314
|
-
"links": [
|
|
6315
|
-
{
|
|
6316
|
-
"url": "https://agentmc.example.com/docs/incident-123",
|
|
6317
|
-
"label": "example",
|
|
6318
|
-
"active": true
|
|
6319
|
-
}
|
|
6320
|
-
],
|
|
6321
|
-
"path": "example",
|
|
6322
|
-
"per_page": 25,
|
|
6323
|
-
"total": 0
|
|
6324
|
-
}
|
|
6325
|
-
}
|
|
6326
|
-
},
|
|
6327
|
-
{
|
|
6328
|
-
"status": "401",
|
|
6329
|
-
"mediaType": "application/json",
|
|
6330
|
-
"description": "Missing or invalid credentials.",
|
|
6331
|
-
"hasContent": true,
|
|
6332
|
-
"example": {
|
|
6333
|
-
"error": {
|
|
6334
|
-
"code": "validation.failed",
|
|
6335
|
-
"message": "Validation failed.",
|
|
6336
|
-
"details": {
|
|
6337
|
-
"fields": {
|
|
6338
|
-
"title": [
|
|
6339
|
-
"The title field is required."
|
|
6340
|
-
]
|
|
6341
|
-
}
|
|
6342
|
-
}
|
|
6343
|
-
}
|
|
6344
|
-
}
|
|
6345
|
-
},
|
|
6346
|
-
{
|
|
6347
|
-
"status": "403",
|
|
6348
|
-
"mediaType": "application/json",
|
|
6349
|
-
"description": "Forbidden.",
|
|
6350
|
-
"hasContent": true,
|
|
6351
|
-
"example": {
|
|
6352
|
-
"error": {
|
|
6353
|
-
"code": "validation.failed",
|
|
6354
|
-
"message": "Validation failed.",
|
|
6355
|
-
"details": {
|
|
6356
|
-
"fields": {
|
|
6357
|
-
"title": [
|
|
6358
|
-
"The title field is required."
|
|
6359
|
-
]
|
|
6360
|
-
}
|
|
6361
|
-
}
|
|
6362
|
-
}
|
|
6363
|
-
}
|
|
6364
|
-
}
|
|
6365
|
-
]
|
|
6366
6356
|
}
|
|
6367
6357
|
];
|
|
6368
6358
|
var operationsById = Object.fromEntries(
|