@1claw/openapi-spec 0.44.3 → 0.46.0
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/README.md +8 -1
- package/openapi.json +864 -37
- package/openapi.yaml +558 -4
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.1.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "1Claw API",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.35.0",
|
|
6
6
|
"description": "Secure secret management for AI agents. Provides vaults, secrets,\npolicy-based access control, agent identity, Intents API,\nsharing, billing, and audit logging. Automations (workflow_spec,\nwebhook tokens, event triggers, Assist), cloud runtimes with\ninteractive shell sessions, agent memory, and discovery.\n\nAll endpoints require JWT Bearer authentication unless marked with\n`security: []`.\n",
|
|
7
7
|
"contact": {
|
|
8
8
|
"email": "ops@1claw.xyz"
|
|
@@ -162,6 +162,10 @@
|
|
|
162
162
|
{
|
|
163
163
|
"name": "OAuth Connect",
|
|
164
164
|
"description": "OAuth connected accounts for agents (provider registry, connect flows, app credentials)"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "Delegations",
|
|
168
|
+
"description": "Agent-to-agent delegation management (human-controlled authorization)"
|
|
165
169
|
}
|
|
166
170
|
],
|
|
167
171
|
"paths": {
|
|
@@ -3856,6 +3860,237 @@
|
|
|
3856
3860
|
}
|
|
3857
3861
|
}
|
|
3858
3862
|
},
|
|
3863
|
+
"/v1/agents/{agent_id}/delegations": {
|
|
3864
|
+
"post": {
|
|
3865
|
+
"tags": [
|
|
3866
|
+
"Delegations"
|
|
3867
|
+
],
|
|
3868
|
+
"summary": "Create a delegation",
|
|
3869
|
+
"description": "Grant an agent (delegator) permission to delegate tasks to another agent (delegate).\nHuman-only — agents cannot create their own delegations.\n",
|
|
3870
|
+
"operationId": "createDelegation",
|
|
3871
|
+
"parameters": [
|
|
3872
|
+
{
|
|
3873
|
+
"$ref": "#/components/parameters/AgentId"
|
|
3874
|
+
}
|
|
3875
|
+
],
|
|
3876
|
+
"requestBody": {
|
|
3877
|
+
"required": true,
|
|
3878
|
+
"content": {
|
|
3879
|
+
"application/json": {
|
|
3880
|
+
"schema": {
|
|
3881
|
+
"$ref": "#/components/schemas/CreateDelegationRequest"
|
|
3882
|
+
}
|
|
3883
|
+
}
|
|
3884
|
+
}
|
|
3885
|
+
},
|
|
3886
|
+
"responses": {
|
|
3887
|
+
"201": {
|
|
3888
|
+
"description": "Delegation created",
|
|
3889
|
+
"content": {
|
|
3890
|
+
"application/json": {
|
|
3891
|
+
"schema": {
|
|
3892
|
+
"$ref": "#/components/schemas/DelegationResponse"
|
|
3893
|
+
}
|
|
3894
|
+
}
|
|
3895
|
+
}
|
|
3896
|
+
},
|
|
3897
|
+
"400": {
|
|
3898
|
+
"$ref": "#/components/responses/BadRequest"
|
|
3899
|
+
},
|
|
3900
|
+
"403": {
|
|
3901
|
+
"$ref": "#/components/responses/Forbidden"
|
|
3902
|
+
},
|
|
3903
|
+
"409": {
|
|
3904
|
+
"description": "Delegation already exists for this delegator/delegate pair",
|
|
3905
|
+
"content": {
|
|
3906
|
+
"application/json": {
|
|
3907
|
+
"schema": {
|
|
3908
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
3909
|
+
}
|
|
3910
|
+
}
|
|
3911
|
+
}
|
|
3912
|
+
}
|
|
3913
|
+
}
|
|
3914
|
+
},
|
|
3915
|
+
"get": {
|
|
3916
|
+
"tags": [
|
|
3917
|
+
"Delegations"
|
|
3918
|
+
],
|
|
3919
|
+
"summary": "List delegations for an agent",
|
|
3920
|
+
"description": "List all delegations where this agent is the delegator.\n",
|
|
3921
|
+
"operationId": "listDelegations",
|
|
3922
|
+
"parameters": [
|
|
3923
|
+
{
|
|
3924
|
+
"$ref": "#/components/parameters/AgentId"
|
|
3925
|
+
}
|
|
3926
|
+
],
|
|
3927
|
+
"responses": {
|
|
3928
|
+
"200": {
|
|
3929
|
+
"description": "List of delegations",
|
|
3930
|
+
"content": {
|
|
3931
|
+
"application/json": {
|
|
3932
|
+
"schema": {
|
|
3933
|
+
"$ref": "#/components/schemas/DelegationListResponse"
|
|
3934
|
+
}
|
|
3935
|
+
}
|
|
3936
|
+
}
|
|
3937
|
+
},
|
|
3938
|
+
"404": {
|
|
3939
|
+
"$ref": "#/components/responses/NotFound"
|
|
3940
|
+
}
|
|
3941
|
+
}
|
|
3942
|
+
}
|
|
3943
|
+
},
|
|
3944
|
+
"/v1/agents/{agent_id}/delegations/effective": {
|
|
3945
|
+
"get": {
|
|
3946
|
+
"tags": [
|
|
3947
|
+
"Delegations"
|
|
3948
|
+
],
|
|
3949
|
+
"summary": "Get effective delegations",
|
|
3950
|
+
"description": "Get the effective delegations for an agent, including daily usage statistics.\nAgents can call this on their own ID to discover what they are authorized to delegate to.\n",
|
|
3951
|
+
"operationId": "getEffectiveDelegations",
|
|
3952
|
+
"parameters": [
|
|
3953
|
+
{
|
|
3954
|
+
"$ref": "#/components/parameters/AgentId"
|
|
3955
|
+
}
|
|
3956
|
+
],
|
|
3957
|
+
"responses": {
|
|
3958
|
+
"200": {
|
|
3959
|
+
"description": "Effective delegations with usage stats",
|
|
3960
|
+
"content": {
|
|
3961
|
+
"application/json": {
|
|
3962
|
+
"schema": {
|
|
3963
|
+
"$ref": "#/components/schemas/DelegationListResponse"
|
|
3964
|
+
}
|
|
3965
|
+
}
|
|
3966
|
+
}
|
|
3967
|
+
},
|
|
3968
|
+
"404": {
|
|
3969
|
+
"$ref": "#/components/responses/NotFound"
|
|
3970
|
+
}
|
|
3971
|
+
}
|
|
3972
|
+
}
|
|
3973
|
+
},
|
|
3974
|
+
"/v1/agents/{agent_id}/delegations/{delegation_id}": {
|
|
3975
|
+
"get": {
|
|
3976
|
+
"tags": [
|
|
3977
|
+
"Delegations"
|
|
3978
|
+
],
|
|
3979
|
+
"summary": "Get a specific delegation",
|
|
3980
|
+
"operationId": "getDelegation",
|
|
3981
|
+
"parameters": [
|
|
3982
|
+
{
|
|
3983
|
+
"$ref": "#/components/parameters/AgentId"
|
|
3984
|
+
},
|
|
3985
|
+
{
|
|
3986
|
+
"name": "delegation_id",
|
|
3987
|
+
"in": "path",
|
|
3988
|
+
"required": true,
|
|
3989
|
+
"schema": {
|
|
3990
|
+
"type": "string",
|
|
3991
|
+
"format": "uuid"
|
|
3992
|
+
}
|
|
3993
|
+
}
|
|
3994
|
+
],
|
|
3995
|
+
"responses": {
|
|
3996
|
+
"200": {
|
|
3997
|
+
"description": "Delegation details",
|
|
3998
|
+
"content": {
|
|
3999
|
+
"application/json": {
|
|
4000
|
+
"schema": {
|
|
4001
|
+
"$ref": "#/components/schemas/DelegationResponse"
|
|
4002
|
+
}
|
|
4003
|
+
}
|
|
4004
|
+
}
|
|
4005
|
+
},
|
|
4006
|
+
"404": {
|
|
4007
|
+
"$ref": "#/components/responses/NotFound"
|
|
4008
|
+
}
|
|
4009
|
+
}
|
|
4010
|
+
},
|
|
4011
|
+
"patch": {
|
|
4012
|
+
"tags": [
|
|
4013
|
+
"Delegations"
|
|
4014
|
+
],
|
|
4015
|
+
"summary": "Update a delegation",
|
|
4016
|
+
"description": "Update delegation tools, limits, mode, or active status. Human-only.\n",
|
|
4017
|
+
"operationId": "updateDelegation",
|
|
4018
|
+
"parameters": [
|
|
4019
|
+
{
|
|
4020
|
+
"$ref": "#/components/parameters/AgentId"
|
|
4021
|
+
},
|
|
4022
|
+
{
|
|
4023
|
+
"name": "delegation_id",
|
|
4024
|
+
"in": "path",
|
|
4025
|
+
"required": true,
|
|
4026
|
+
"schema": {
|
|
4027
|
+
"type": "string",
|
|
4028
|
+
"format": "uuid"
|
|
4029
|
+
}
|
|
4030
|
+
}
|
|
4031
|
+
],
|
|
4032
|
+
"requestBody": {
|
|
4033
|
+
"required": true,
|
|
4034
|
+
"content": {
|
|
4035
|
+
"application/json": {
|
|
4036
|
+
"schema": {
|
|
4037
|
+
"$ref": "#/components/schemas/UpdateDelegationRequest"
|
|
4038
|
+
}
|
|
4039
|
+
}
|
|
4040
|
+
}
|
|
4041
|
+
},
|
|
4042
|
+
"responses": {
|
|
4043
|
+
"200": {
|
|
4044
|
+
"description": "Delegation updated",
|
|
4045
|
+
"content": {
|
|
4046
|
+
"application/json": {
|
|
4047
|
+
"schema": {
|
|
4048
|
+
"$ref": "#/components/schemas/DelegationResponse"
|
|
4049
|
+
}
|
|
4050
|
+
}
|
|
4051
|
+
}
|
|
4052
|
+
},
|
|
4053
|
+
"400": {
|
|
4054
|
+
"$ref": "#/components/responses/BadRequest"
|
|
4055
|
+
},
|
|
4056
|
+
"403": {
|
|
4057
|
+
"$ref": "#/components/responses/Forbidden"
|
|
4058
|
+
},
|
|
4059
|
+
"404": {
|
|
4060
|
+
"$ref": "#/components/responses/NotFound"
|
|
4061
|
+
}
|
|
4062
|
+
}
|
|
4063
|
+
},
|
|
4064
|
+
"delete": {
|
|
4065
|
+
"tags": [
|
|
4066
|
+
"Delegations"
|
|
4067
|
+
],
|
|
4068
|
+
"summary": "Revoke a delegation",
|
|
4069
|
+
"operationId": "revokeDelegation",
|
|
4070
|
+
"parameters": [
|
|
4071
|
+
{
|
|
4072
|
+
"$ref": "#/components/parameters/AgentId"
|
|
4073
|
+
},
|
|
4074
|
+
{
|
|
4075
|
+
"name": "delegation_id",
|
|
4076
|
+
"in": "path",
|
|
4077
|
+
"required": true,
|
|
4078
|
+
"schema": {
|
|
4079
|
+
"type": "string",
|
|
4080
|
+
"format": "uuid"
|
|
4081
|
+
}
|
|
4082
|
+
}
|
|
4083
|
+
],
|
|
4084
|
+
"responses": {
|
|
4085
|
+
"204": {
|
|
4086
|
+
"description": "Delegation revoked"
|
|
4087
|
+
},
|
|
4088
|
+
"404": {
|
|
4089
|
+
"$ref": "#/components/responses/NotFound"
|
|
4090
|
+
}
|
|
4091
|
+
}
|
|
4092
|
+
}
|
|
4093
|
+
},
|
|
3859
4094
|
"/v1/agents/{agent_id}/sign": {
|
|
3860
4095
|
"post": {
|
|
3861
4096
|
"tags": [
|
|
@@ -7712,13 +7947,14 @@
|
|
|
7712
7947
|
}
|
|
7713
7948
|
}
|
|
7714
7949
|
},
|
|
7715
|
-
"/v1/platform/apps/{appId}/
|
|
7716
|
-
"
|
|
7950
|
+
"/v1/platform/apps/{appId}/stats": {
|
|
7951
|
+
"get": {
|
|
7717
7952
|
"tags": [
|
|
7718
7953
|
"Platform"
|
|
7719
7954
|
],
|
|
7720
|
-
"summary": "
|
|
7721
|
-
"description": "
|
|
7955
|
+
"summary": "Get platform app statistics",
|
|
7956
|
+
"description": "Returns aggregate statistics about a platform app's connected users, bootstraps, and grants.",
|
|
7957
|
+
"operationId": "getPlatformAppStats",
|
|
7722
7958
|
"security": [
|
|
7723
7959
|
{
|
|
7724
7960
|
"BearerAuth": []
|
|
@@ -7726,8 +7962,8 @@
|
|
|
7726
7962
|
],
|
|
7727
7963
|
"parameters": [
|
|
7728
7964
|
{
|
|
7729
|
-
"in": "path",
|
|
7730
7965
|
"name": "appId",
|
|
7966
|
+
"in": "path",
|
|
7731
7967
|
"required": true,
|
|
7732
7968
|
"schema": {
|
|
7733
7969
|
"type": "string",
|
|
@@ -7735,34 +7971,34 @@
|
|
|
7735
7971
|
}
|
|
7736
7972
|
}
|
|
7737
7973
|
],
|
|
7738
|
-
"requestBody": {
|
|
7739
|
-
"required": true,
|
|
7740
|
-
"content": {
|
|
7741
|
-
"application/json": {
|
|
7742
|
-
"schema": {
|
|
7743
|
-
"$ref": "#/components/schemas/CreateTemplateRequest"
|
|
7744
|
-
}
|
|
7745
|
-
}
|
|
7746
|
-
}
|
|
7747
|
-
},
|
|
7748
7974
|
"responses": {
|
|
7749
|
-
"
|
|
7750
|
-
"description": "
|
|
7975
|
+
"200": {
|
|
7976
|
+
"description": "App statistics",
|
|
7751
7977
|
"content": {
|
|
7752
7978
|
"application/json": {
|
|
7753
7979
|
"schema": {
|
|
7754
|
-
"$ref": "#/components/schemas/
|
|
7980
|
+
"$ref": "#/components/schemas/PlatformAppStatsResponse"
|
|
7755
7981
|
}
|
|
7756
7982
|
}
|
|
7757
7983
|
}
|
|
7984
|
+
},
|
|
7985
|
+
"401": {
|
|
7986
|
+
"$ref": "#/components/responses/Unauthorized"
|
|
7987
|
+
},
|
|
7988
|
+
"404": {
|
|
7989
|
+
"$ref": "#/components/responses/NotFound"
|
|
7758
7990
|
}
|
|
7759
7991
|
}
|
|
7760
|
-
}
|
|
7761
|
-
|
|
7992
|
+
}
|
|
7993
|
+
},
|
|
7994
|
+
"/v1/platform/apps/{appId}/rotate-webhook-secret": {
|
|
7995
|
+
"post": {
|
|
7762
7996
|
"tags": [
|
|
7763
7997
|
"Platform"
|
|
7764
7998
|
],
|
|
7765
|
-
"summary": "
|
|
7999
|
+
"summary": "Rotate webhook secret",
|
|
8000
|
+
"description": "Generate a new webhook signing secret for the platform app. The old secret is immediately invalidated. Returns the new secret (one-time).",
|
|
8001
|
+
"operationId": "rotatePlatformWebhookSecret",
|
|
7766
8002
|
"security": [
|
|
7767
8003
|
{
|
|
7768
8004
|
"BearerAuth": []
|
|
@@ -7770,8 +8006,8 @@
|
|
|
7770
8006
|
],
|
|
7771
8007
|
"parameters": [
|
|
7772
8008
|
{
|
|
7773
|
-
"in": "path",
|
|
7774
8009
|
"name": "appId",
|
|
8010
|
+
"in": "path",
|
|
7775
8011
|
"required": true,
|
|
7776
8012
|
"schema": {
|
|
7777
8013
|
"type": "string",
|
|
@@ -7781,29 +8017,43 @@
|
|
|
7781
8017
|
],
|
|
7782
8018
|
"responses": {
|
|
7783
8019
|
"200": {
|
|
7784
|
-
"description": "
|
|
8020
|
+
"description": "New webhook secret generated",
|
|
7785
8021
|
"content": {
|
|
7786
8022
|
"application/json": {
|
|
7787
8023
|
"schema": {
|
|
7788
|
-
"type": "
|
|
7789
|
-
"
|
|
7790
|
-
"
|
|
8024
|
+
"type": "object",
|
|
8025
|
+
"required": [
|
|
8026
|
+
"webhook_secret"
|
|
8027
|
+
],
|
|
8028
|
+
"properties": {
|
|
8029
|
+
"webhook_secret": {
|
|
8030
|
+
"type": "string",
|
|
8031
|
+
"description": "The new webhook signing secret (shown once)"
|
|
8032
|
+
}
|
|
7791
8033
|
}
|
|
7792
8034
|
}
|
|
7793
8035
|
}
|
|
7794
8036
|
}
|
|
8037
|
+
},
|
|
8038
|
+
"401": {
|
|
8039
|
+
"$ref": "#/components/responses/Unauthorized"
|
|
8040
|
+
},
|
|
8041
|
+
"403": {
|
|
8042
|
+
"description": "Only human users can rotate webhook secrets"
|
|
8043
|
+
},
|
|
8044
|
+
"404": {
|
|
8045
|
+
"$ref": "#/components/responses/NotFound"
|
|
7795
8046
|
}
|
|
7796
8047
|
}
|
|
7797
8048
|
}
|
|
7798
8049
|
},
|
|
7799
|
-
"/v1/platform/apps/{appId}/templates
|
|
7800
|
-
"
|
|
8050
|
+
"/v1/platform/apps/{appId}/templates": {
|
|
8051
|
+
"post": {
|
|
7801
8052
|
"tags": [
|
|
7802
8053
|
"Platform"
|
|
7803
8054
|
],
|
|
7804
|
-
"summary": "
|
|
7805
|
-
"description": "
|
|
7806
|
-
"operationId": "updatePlatformTemplate",
|
|
8055
|
+
"summary": "Create bootstrap template",
|
|
8056
|
+
"description": "Create a template that defines what vault, agents, and policies to bootstrap for each connected user.",
|
|
7807
8057
|
"security": [
|
|
7808
8058
|
{
|
|
7809
8059
|
"BearerAuth": []
|
|
@@ -7818,9 +8068,94 @@
|
|
|
7818
8068
|
"type": "string",
|
|
7819
8069
|
"format": "uuid"
|
|
7820
8070
|
}
|
|
7821
|
-
}
|
|
7822
|
-
|
|
7823
|
-
|
|
8071
|
+
}
|
|
8072
|
+
],
|
|
8073
|
+
"requestBody": {
|
|
8074
|
+
"required": true,
|
|
8075
|
+
"content": {
|
|
8076
|
+
"application/json": {
|
|
8077
|
+
"schema": {
|
|
8078
|
+
"$ref": "#/components/schemas/CreateTemplateRequest"
|
|
8079
|
+
}
|
|
8080
|
+
}
|
|
8081
|
+
}
|
|
8082
|
+
},
|
|
8083
|
+
"responses": {
|
|
8084
|
+
"201": {
|
|
8085
|
+
"description": "Template created",
|
|
8086
|
+
"content": {
|
|
8087
|
+
"application/json": {
|
|
8088
|
+
"schema": {
|
|
8089
|
+
"$ref": "#/components/schemas/PlatformTemplateResponse"
|
|
8090
|
+
}
|
|
8091
|
+
}
|
|
8092
|
+
}
|
|
8093
|
+
}
|
|
8094
|
+
}
|
|
8095
|
+
},
|
|
8096
|
+
"get": {
|
|
8097
|
+
"tags": [
|
|
8098
|
+
"Platform"
|
|
8099
|
+
],
|
|
8100
|
+
"summary": "List templates",
|
|
8101
|
+
"security": [
|
|
8102
|
+
{
|
|
8103
|
+
"BearerAuth": []
|
|
8104
|
+
}
|
|
8105
|
+
],
|
|
8106
|
+
"parameters": [
|
|
8107
|
+
{
|
|
8108
|
+
"in": "path",
|
|
8109
|
+
"name": "appId",
|
|
8110
|
+
"required": true,
|
|
8111
|
+
"schema": {
|
|
8112
|
+
"type": "string",
|
|
8113
|
+
"format": "uuid"
|
|
8114
|
+
}
|
|
8115
|
+
}
|
|
8116
|
+
],
|
|
8117
|
+
"responses": {
|
|
8118
|
+
"200": {
|
|
8119
|
+
"description": "List of templates",
|
|
8120
|
+
"content": {
|
|
8121
|
+
"application/json": {
|
|
8122
|
+
"schema": {
|
|
8123
|
+
"type": "array",
|
|
8124
|
+
"items": {
|
|
8125
|
+
"$ref": "#/components/schemas/PlatformTemplateResponse"
|
|
8126
|
+
}
|
|
8127
|
+
}
|
|
8128
|
+
}
|
|
8129
|
+
}
|
|
8130
|
+
}
|
|
8131
|
+
}
|
|
8132
|
+
}
|
|
8133
|
+
},
|
|
8134
|
+
"/v1/platform/apps/{appId}/templates/{template_id}": {
|
|
8135
|
+
"patch": {
|
|
8136
|
+
"tags": [
|
|
8137
|
+
"Platform"
|
|
8138
|
+
],
|
|
8139
|
+
"summary": "Update a bootstrap template",
|
|
8140
|
+
"description": "Update an existing template's name, description, spec, or active status.",
|
|
8141
|
+
"operationId": "updatePlatformTemplate",
|
|
8142
|
+
"security": [
|
|
8143
|
+
{
|
|
8144
|
+
"BearerAuth": []
|
|
8145
|
+
}
|
|
8146
|
+
],
|
|
8147
|
+
"parameters": [
|
|
8148
|
+
{
|
|
8149
|
+
"in": "path",
|
|
8150
|
+
"name": "appId",
|
|
8151
|
+
"required": true,
|
|
8152
|
+
"schema": {
|
|
8153
|
+
"type": "string",
|
|
8154
|
+
"format": "uuid"
|
|
8155
|
+
}
|
|
8156
|
+
},
|
|
8157
|
+
{
|
|
8158
|
+
"in": "path",
|
|
7824
8159
|
"name": "template_id",
|
|
7825
8160
|
"required": true,
|
|
7826
8161
|
"schema": {
|
|
@@ -9911,6 +10246,117 @@
|
|
|
9911
10246
|
}
|
|
9912
10247
|
}
|
|
9913
10248
|
},
|
|
10249
|
+
"/v1/oauth/revoke": {
|
|
10250
|
+
"post": {
|
|
10251
|
+
"tags": [
|
|
10252
|
+
"OAuth"
|
|
10253
|
+
],
|
|
10254
|
+
"summary": "Revoke an OAuth token (RFC 7009)",
|
|
10255
|
+
"description": "Revokes an access token or refresh token. The authorization server\ninvalidates the token so it can no longer be used. Follows RFC 7009.\n",
|
|
10256
|
+
"operationId": "revokeOAuthToken",
|
|
10257
|
+
"security": [],
|
|
10258
|
+
"requestBody": {
|
|
10259
|
+
"required": true,
|
|
10260
|
+
"content": {
|
|
10261
|
+
"application/json": {
|
|
10262
|
+
"schema": {
|
|
10263
|
+
"type": "object",
|
|
10264
|
+
"required": [
|
|
10265
|
+
"token"
|
|
10266
|
+
],
|
|
10267
|
+
"properties": {
|
|
10268
|
+
"token": {
|
|
10269
|
+
"type": "string",
|
|
10270
|
+
"description": "The token to revoke (access_token or refresh_token)"
|
|
10271
|
+
},
|
|
10272
|
+
"token_type_hint": {
|
|
10273
|
+
"type": "string",
|
|
10274
|
+
"enum": [
|
|
10275
|
+
"access_token",
|
|
10276
|
+
"refresh_token"
|
|
10277
|
+
],
|
|
10278
|
+
"description": "Hint about the type of token being revoked"
|
|
10279
|
+
}
|
|
10280
|
+
}
|
|
10281
|
+
}
|
|
10282
|
+
}
|
|
10283
|
+
}
|
|
10284
|
+
},
|
|
10285
|
+
"responses": {
|
|
10286
|
+
"200": {
|
|
10287
|
+
"description": "Token revoked successfully (or was already invalid)",
|
|
10288
|
+
"content": {
|
|
10289
|
+
"application/json": {
|
|
10290
|
+
"schema": {
|
|
10291
|
+
"type": "object",
|
|
10292
|
+
"properties": {
|
|
10293
|
+
"revoked": {
|
|
10294
|
+
"type": "boolean",
|
|
10295
|
+
"example": true
|
|
10296
|
+
}
|
|
10297
|
+
}
|
|
10298
|
+
}
|
|
10299
|
+
}
|
|
10300
|
+
}
|
|
10301
|
+
}
|
|
10302
|
+
}
|
|
10303
|
+
}
|
|
10304
|
+
},
|
|
10305
|
+
"/v1/oauth/consents/{app_id}": {
|
|
10306
|
+
"delete": {
|
|
10307
|
+
"tags": [
|
|
10308
|
+
"OAuth"
|
|
10309
|
+
],
|
|
10310
|
+
"summary": "Revoke consent for a platform app",
|
|
10311
|
+
"description": "Revokes the user's previously granted OAuth consent for a specific platform app.\nAll active tokens issued to the app are invalidated and the consent record is deleted.\n",
|
|
10312
|
+
"operationId": "revokeOAuthConsent",
|
|
10313
|
+
"security": [
|
|
10314
|
+
{
|
|
10315
|
+
"BearerAuth": []
|
|
10316
|
+
}
|
|
10317
|
+
],
|
|
10318
|
+
"parameters": [
|
|
10319
|
+
{
|
|
10320
|
+
"name": "app_id",
|
|
10321
|
+
"in": "path",
|
|
10322
|
+
"required": true,
|
|
10323
|
+
"schema": {
|
|
10324
|
+
"type": "string",
|
|
10325
|
+
"format": "uuid"
|
|
10326
|
+
},
|
|
10327
|
+
"description": "The platform app ID whose consent to revoke"
|
|
10328
|
+
}
|
|
10329
|
+
],
|
|
10330
|
+
"responses": {
|
|
10331
|
+
"200": {
|
|
10332
|
+
"description": "Consent revoked",
|
|
10333
|
+
"content": {
|
|
10334
|
+
"application/json": {
|
|
10335
|
+
"schema": {
|
|
10336
|
+
"type": "object",
|
|
10337
|
+
"properties": {
|
|
10338
|
+
"revoked": {
|
|
10339
|
+
"type": "boolean",
|
|
10340
|
+
"example": true
|
|
10341
|
+
},
|
|
10342
|
+
"app_id": {
|
|
10343
|
+
"type": "string",
|
|
10344
|
+
"format": "uuid"
|
|
10345
|
+
}
|
|
10346
|
+
}
|
|
10347
|
+
}
|
|
10348
|
+
}
|
|
10349
|
+
}
|
|
10350
|
+
},
|
|
10351
|
+
"401": {
|
|
10352
|
+
"$ref": "#/components/responses/Unauthorized"
|
|
10353
|
+
},
|
|
10354
|
+
"404": {
|
|
10355
|
+
"$ref": "#/components/responses/NotFound"
|
|
10356
|
+
}
|
|
10357
|
+
}
|
|
10358
|
+
}
|
|
10359
|
+
},
|
|
9914
10360
|
"/v1/risk/events": {
|
|
9915
10361
|
"get": {
|
|
9916
10362
|
"tags": [
|
|
@@ -12192,10 +12638,11 @@
|
|
|
12192
12638
|
"/v1/platform/marketplace": {
|
|
12193
12639
|
"get": {
|
|
12194
12640
|
"tags": [
|
|
12641
|
+
"Platform",
|
|
12195
12642
|
"Discovery"
|
|
12196
12643
|
],
|
|
12197
12644
|
"summary": "Public marketplace",
|
|
12198
|
-
"description": "Browse the public platform marketplace of agents and
|
|
12645
|
+
"description": "Browse the public platform marketplace of listed apps and agents. Returns approved platform apps with category, tags, pricing summaries, and screenshots.",
|
|
12199
12646
|
"operationId": "listMarketplace",
|
|
12200
12647
|
"security": [],
|
|
12201
12648
|
"parameters": [
|
|
@@ -12222,6 +12669,14 @@
|
|
|
12222
12669
|
"type": "string"
|
|
12223
12670
|
},
|
|
12224
12671
|
"description": "Search query"
|
|
12672
|
+
},
|
|
12673
|
+
{
|
|
12674
|
+
"name": "category",
|
|
12675
|
+
"in": "query",
|
|
12676
|
+
"schema": {
|
|
12677
|
+
"type": "string"
|
|
12678
|
+
},
|
|
12679
|
+
"description": "Filter by app category"
|
|
12225
12680
|
}
|
|
12226
12681
|
],
|
|
12227
12682
|
"responses": {
|
|
@@ -12230,7 +12685,7 @@
|
|
|
12230
12685
|
"content": {
|
|
12231
12686
|
"application/json": {
|
|
12232
12687
|
"schema": {
|
|
12233
|
-
"$ref": "#/components/schemas/
|
|
12688
|
+
"$ref": "#/components/schemas/MarketplaceResponse"
|
|
12234
12689
|
}
|
|
12235
12690
|
}
|
|
12236
12691
|
}
|
|
@@ -16662,6 +17117,195 @@
|
|
|
16662
17117
|
}
|
|
16663
17118
|
}
|
|
16664
17119
|
},
|
|
17120
|
+
"CreateDelegationRequest": {
|
|
17121
|
+
"type": "object",
|
|
17122
|
+
"required": [
|
|
17123
|
+
"delegate_id"
|
|
17124
|
+
],
|
|
17125
|
+
"properties": {
|
|
17126
|
+
"delegate_id": {
|
|
17127
|
+
"type": "string",
|
|
17128
|
+
"format": "uuid",
|
|
17129
|
+
"description": "The agent ID to delegate to."
|
|
17130
|
+
},
|
|
17131
|
+
"allowed_tools": {
|
|
17132
|
+
"type": "array",
|
|
17133
|
+
"items": {
|
|
17134
|
+
"type": "string"
|
|
17135
|
+
},
|
|
17136
|
+
"description": "Tool names the delegate may use. Empty means all tools allowed."
|
|
17137
|
+
},
|
|
17138
|
+
"blocked_tools": {
|
|
17139
|
+
"type": "array",
|
|
17140
|
+
"items": {
|
|
17141
|
+
"type": "string"
|
|
17142
|
+
},
|
|
17143
|
+
"description": "Tool names the delegate may NOT use."
|
|
17144
|
+
},
|
|
17145
|
+
"max_daily_delegations": {
|
|
17146
|
+
"type": "integer",
|
|
17147
|
+
"description": "Maximum delegation calls per UTC day. NULL means unlimited."
|
|
17148
|
+
},
|
|
17149
|
+
"max_depth": {
|
|
17150
|
+
"type": "integer",
|
|
17151
|
+
"description": "Maximum delegation chain depth (default 3).",
|
|
17152
|
+
"default": 3
|
|
17153
|
+
},
|
|
17154
|
+
"guardrails": {
|
|
17155
|
+
"type": "object",
|
|
17156
|
+
"description": "Additional guardrail constraints for this delegation."
|
|
17157
|
+
},
|
|
17158
|
+
"delegation_mode": {
|
|
17159
|
+
"type": "string",
|
|
17160
|
+
"enum": [
|
|
17161
|
+
"caller",
|
|
17162
|
+
"target",
|
|
17163
|
+
"both"
|
|
17164
|
+
],
|
|
17165
|
+
"description": "Execution mode: caller (use delegator's creds), target (use delegate's config), or both.",
|
|
17166
|
+
"default": "caller"
|
|
17167
|
+
},
|
|
17168
|
+
"expires_at": {
|
|
17169
|
+
"type": "string",
|
|
17170
|
+
"format": "date-time",
|
|
17171
|
+
"description": "Optional expiration timestamp."
|
|
17172
|
+
}
|
|
17173
|
+
}
|
|
17174
|
+
},
|
|
17175
|
+
"UpdateDelegationRequest": {
|
|
17176
|
+
"type": "object",
|
|
17177
|
+
"properties": {
|
|
17178
|
+
"allowed_tools": {
|
|
17179
|
+
"type": "array",
|
|
17180
|
+
"items": {
|
|
17181
|
+
"type": "string"
|
|
17182
|
+
}
|
|
17183
|
+
},
|
|
17184
|
+
"blocked_tools": {
|
|
17185
|
+
"type": "array",
|
|
17186
|
+
"items": {
|
|
17187
|
+
"type": "string"
|
|
17188
|
+
}
|
|
17189
|
+
},
|
|
17190
|
+
"max_daily_delegations": {
|
|
17191
|
+
"type": "integer"
|
|
17192
|
+
},
|
|
17193
|
+
"max_depth": {
|
|
17194
|
+
"type": "integer"
|
|
17195
|
+
},
|
|
17196
|
+
"guardrails": {
|
|
17197
|
+
"type": "object"
|
|
17198
|
+
},
|
|
17199
|
+
"delegation_mode": {
|
|
17200
|
+
"type": "string",
|
|
17201
|
+
"enum": [
|
|
17202
|
+
"caller",
|
|
17203
|
+
"target",
|
|
17204
|
+
"both"
|
|
17205
|
+
]
|
|
17206
|
+
},
|
|
17207
|
+
"is_active": {
|
|
17208
|
+
"type": "boolean"
|
|
17209
|
+
},
|
|
17210
|
+
"expires_at": {
|
|
17211
|
+
"type": "string",
|
|
17212
|
+
"format": "date-time",
|
|
17213
|
+
"nullable": true
|
|
17214
|
+
}
|
|
17215
|
+
}
|
|
17216
|
+
},
|
|
17217
|
+
"DelegationResponse": {
|
|
17218
|
+
"type": "object",
|
|
17219
|
+
"properties": {
|
|
17220
|
+
"id": {
|
|
17221
|
+
"type": "string",
|
|
17222
|
+
"format": "uuid"
|
|
17223
|
+
},
|
|
17224
|
+
"org_id": {
|
|
17225
|
+
"type": "string",
|
|
17226
|
+
"format": "uuid"
|
|
17227
|
+
},
|
|
17228
|
+
"delegator_id": {
|
|
17229
|
+
"type": "string",
|
|
17230
|
+
"format": "uuid"
|
|
17231
|
+
},
|
|
17232
|
+
"delegate_id": {
|
|
17233
|
+
"type": "string",
|
|
17234
|
+
"format": "uuid"
|
|
17235
|
+
},
|
|
17236
|
+
"delegator_name": {
|
|
17237
|
+
"type": "string"
|
|
17238
|
+
},
|
|
17239
|
+
"delegate_name": {
|
|
17240
|
+
"type": "string"
|
|
17241
|
+
},
|
|
17242
|
+
"allowed_tools": {
|
|
17243
|
+
"type": "array",
|
|
17244
|
+
"items": {
|
|
17245
|
+
"type": "string"
|
|
17246
|
+
}
|
|
17247
|
+
},
|
|
17248
|
+
"blocked_tools": {
|
|
17249
|
+
"type": "array",
|
|
17250
|
+
"items": {
|
|
17251
|
+
"type": "string"
|
|
17252
|
+
}
|
|
17253
|
+
},
|
|
17254
|
+
"max_daily_delegations": {
|
|
17255
|
+
"type": "integer",
|
|
17256
|
+
"nullable": true
|
|
17257
|
+
},
|
|
17258
|
+
"max_depth": {
|
|
17259
|
+
"type": "integer"
|
|
17260
|
+
},
|
|
17261
|
+
"guardrails": {
|
|
17262
|
+
"type": "object"
|
|
17263
|
+
},
|
|
17264
|
+
"delegation_mode": {
|
|
17265
|
+
"type": "string",
|
|
17266
|
+
"enum": [
|
|
17267
|
+
"caller",
|
|
17268
|
+
"target",
|
|
17269
|
+
"both"
|
|
17270
|
+
]
|
|
17271
|
+
},
|
|
17272
|
+
"is_active": {
|
|
17273
|
+
"type": "boolean"
|
|
17274
|
+
},
|
|
17275
|
+
"created_by": {
|
|
17276
|
+
"type": "string",
|
|
17277
|
+
"format": "uuid"
|
|
17278
|
+
},
|
|
17279
|
+
"expires_at": {
|
|
17280
|
+
"type": "string",
|
|
17281
|
+
"format": "date-time",
|
|
17282
|
+
"nullable": true
|
|
17283
|
+
},
|
|
17284
|
+
"created_at": {
|
|
17285
|
+
"type": "string",
|
|
17286
|
+
"format": "date-time"
|
|
17287
|
+
},
|
|
17288
|
+
"updated_at": {
|
|
17289
|
+
"type": "string",
|
|
17290
|
+
"format": "date-time"
|
|
17291
|
+
},
|
|
17292
|
+
"delegations_today": {
|
|
17293
|
+
"type": "integer",
|
|
17294
|
+
"description": "Number of delegations used today (present in effective endpoint)."
|
|
17295
|
+
}
|
|
17296
|
+
}
|
|
17297
|
+
},
|
|
17298
|
+
"DelegationListResponse": {
|
|
17299
|
+
"type": "object",
|
|
17300
|
+
"properties": {
|
|
17301
|
+
"delegations": {
|
|
17302
|
+
"type": "array",
|
|
17303
|
+
"items": {
|
|
17304
|
+
"$ref": "#/components/schemas/DelegationResponse"
|
|
17305
|
+
}
|
|
17306
|
+
}
|
|
17307
|
+
}
|
|
17308
|
+
},
|
|
16665
17309
|
"SignIntentRequest": {
|
|
16666
17310
|
"type": "object",
|
|
16667
17311
|
"required": [
|
|
@@ -19656,6 +20300,14 @@
|
|
|
19656
20300
|
"format": "uuid",
|
|
19657
20301
|
"nullable": true
|
|
19658
20302
|
},
|
|
20303
|
+
"agent_ids": {
|
|
20304
|
+
"type": "array",
|
|
20305
|
+
"items": {
|
|
20306
|
+
"type": "string",
|
|
20307
|
+
"format": "uuid"
|
|
20308
|
+
},
|
|
20309
|
+
"description": "All agent IDs provisioned by the template (when multiple agents are defined)"
|
|
20310
|
+
},
|
|
19659
20311
|
"policy_ids": {
|
|
19660
20312
|
"type": "array",
|
|
19661
20313
|
"items": {
|
|
@@ -19721,6 +20373,88 @@
|
|
|
19721
20373
|
}
|
|
19722
20374
|
}
|
|
19723
20375
|
},
|
|
20376
|
+
"PlatformAppStatsResponse": {
|
|
20377
|
+
"type": "object",
|
|
20378
|
+
"required": [
|
|
20379
|
+
"total_connections",
|
|
20380
|
+
"active_connections",
|
|
20381
|
+
"claimed_connections",
|
|
20382
|
+
"total_bootstraps",
|
|
20383
|
+
"total_grants"
|
|
20384
|
+
],
|
|
20385
|
+
"properties": {
|
|
20386
|
+
"total_connections": {
|
|
20387
|
+
"type": "integer",
|
|
20388
|
+
"description": "Total number of user connections (all statuses)"
|
|
20389
|
+
},
|
|
20390
|
+
"active_connections": {
|
|
20391
|
+
"type": "integer",
|
|
20392
|
+
"description": "Number of active connections"
|
|
20393
|
+
},
|
|
20394
|
+
"claimed_connections": {
|
|
20395
|
+
"type": "integer",
|
|
20396
|
+
"description": "Number of claimed connections"
|
|
20397
|
+
},
|
|
20398
|
+
"total_bootstraps": {
|
|
20399
|
+
"type": "integer",
|
|
20400
|
+
"description": "Total bootstrap operations performed"
|
|
20401
|
+
},
|
|
20402
|
+
"total_grants": {
|
|
20403
|
+
"type": "integer",
|
|
20404
|
+
"description": "Total resource grants issued"
|
|
20405
|
+
}
|
|
20406
|
+
}
|
|
20407
|
+
},
|
|
20408
|
+
"MarketplaceResponse": {
|
|
20409
|
+
"type": "object",
|
|
20410
|
+
"properties": {
|
|
20411
|
+
"apps": {
|
|
20412
|
+
"type": "array",
|
|
20413
|
+
"items": {
|
|
20414
|
+
"type": "object",
|
|
20415
|
+
"properties": {
|
|
20416
|
+
"id": {
|
|
20417
|
+
"type": "string",
|
|
20418
|
+
"format": "uuid"
|
|
20419
|
+
},
|
|
20420
|
+
"name": {
|
|
20421
|
+
"type": "string"
|
|
20422
|
+
},
|
|
20423
|
+
"slug": {
|
|
20424
|
+
"type": "string"
|
|
20425
|
+
},
|
|
20426
|
+
"description": {
|
|
20427
|
+
"type": "string"
|
|
20428
|
+
},
|
|
20429
|
+
"logo_url": {
|
|
20430
|
+
"type": "string",
|
|
20431
|
+
"nullable": true
|
|
20432
|
+
},
|
|
20433
|
+
"category": {
|
|
20434
|
+
"type": "string",
|
|
20435
|
+
"nullable": true
|
|
20436
|
+
},
|
|
20437
|
+
"listing_tags": {
|
|
20438
|
+
"type": "array",
|
|
20439
|
+
"items": {
|
|
20440
|
+
"type": "string"
|
|
20441
|
+
}
|
|
20442
|
+
},
|
|
20443
|
+
"listing_screenshots": {
|
|
20444
|
+
"type": "array",
|
|
20445
|
+
"items": {
|
|
20446
|
+
"type": "string"
|
|
20447
|
+
}
|
|
20448
|
+
},
|
|
20449
|
+
"pricing_summary": {
|
|
20450
|
+
"type": "string",
|
|
20451
|
+
"nullable": true
|
|
20452
|
+
}
|
|
20453
|
+
}
|
|
20454
|
+
}
|
|
20455
|
+
}
|
|
20456
|
+
}
|
|
20457
|
+
},
|
|
19724
20458
|
"ConnectedAppResponse": {
|
|
19725
20459
|
"type": "object",
|
|
19726
20460
|
"properties": {
|
|
@@ -20344,6 +21078,11 @@
|
|
|
20344
21078
|
"type": "integer",
|
|
20345
21079
|
"description": "Token lifetime in seconds"
|
|
20346
21080
|
},
|
|
21081
|
+
"refresh_token": {
|
|
21082
|
+
"type": "string",
|
|
21083
|
+
"nullable": true,
|
|
21084
|
+
"description": "Refresh token for obtaining new access tokens (when offline_access scope was granted)"
|
|
21085
|
+
},
|
|
20347
21086
|
"id_token": {
|
|
20348
21087
|
"type": "string",
|
|
20349
21088
|
"nullable": true,
|
|
@@ -22359,6 +23098,25 @@
|
|
|
22359
23098
|
"type": "string"
|
|
22360
23099
|
},
|
|
22361
23100
|
"description": "Platform-specific config.\nTelegram: { bot_token }.\nWhatsApp: { phone_number_id, access_token, verify_token }.\nDiscord: { bot_token, application_id }.\n"
|
|
23101
|
+
},
|
|
23102
|
+
"slash_commands_enabled": {
|
|
23103
|
+
"type": "boolean",
|
|
23104
|
+
"description": "Enable Hermes-compatible slash commands on this channel. When true,\nmessages starting with `/` are handled before the LLM. Commands:\n/help, /new, /reset, /clear, /model, /mode, /personality, /retry,\n/undo, /compress, /summarize, /stop, /status, /skills, /usage, /sethome.\n"
|
|
23105
|
+
},
|
|
23106
|
+
"voice_transcription_enabled": {
|
|
23107
|
+
"type": "boolean",
|
|
23108
|
+
"description": "Enable voice message transcription"
|
|
23109
|
+
},
|
|
23110
|
+
"sender_allowlist": {
|
|
23111
|
+
"type": "array",
|
|
23112
|
+
"items": {
|
|
23113
|
+
"type": "string"
|
|
23114
|
+
},
|
|
23115
|
+
"description": "List of allowed sender IDs"
|
|
23116
|
+
},
|
|
23117
|
+
"auto_respond_enabled": {
|
|
23118
|
+
"type": "boolean",
|
|
23119
|
+
"description": "Enable auto-respond"
|
|
22362
23120
|
}
|
|
22363
23121
|
}
|
|
22364
23122
|
},
|
|
@@ -22376,6 +23134,21 @@
|
|
|
22376
23134
|
"additionalProperties": {
|
|
22377
23135
|
"type": "string"
|
|
22378
23136
|
}
|
|
23137
|
+
},
|
|
23138
|
+
"slash_commands_enabled": {
|
|
23139
|
+
"type": "boolean"
|
|
23140
|
+
},
|
|
23141
|
+
"voice_transcription_enabled": {
|
|
23142
|
+
"type": "boolean"
|
|
23143
|
+
},
|
|
23144
|
+
"sender_allowlist": {
|
|
23145
|
+
"type": "array",
|
|
23146
|
+
"items": {
|
|
23147
|
+
"type": "string"
|
|
23148
|
+
}
|
|
23149
|
+
},
|
|
23150
|
+
"auto_respond_enabled": {
|
|
23151
|
+
"type": "boolean"
|
|
22379
23152
|
}
|
|
22380
23153
|
}
|
|
22381
23154
|
},
|
|
@@ -22420,6 +23193,36 @@
|
|
|
22420
23193
|
"nullable": true,
|
|
22421
23194
|
"description": "Channel-specific configuration JSON. May include:\n- sender_allowlist (array of strings): restrict which external senders can trigger the agent\n- auto_respond_enabled (boolean): whether the agent auto-responds to inbound messages\n"
|
|
22422
23195
|
},
|
|
23196
|
+
"slash_commands_enabled": {
|
|
23197
|
+
"type": "boolean",
|
|
23198
|
+
"description": "Whether Hermes-compatible slash commands are enabled for this channel.\nCommands: /help, /new, /reset, /clear, /model, /mode, /personality, /retry,\n/undo, /compress, /summarize, /stop, /status, /skills, /usage, /sethome.\n"
|
|
23199
|
+
},
|
|
23200
|
+
"voice_transcription_enabled": {
|
|
23201
|
+
"type": "boolean",
|
|
23202
|
+
"description": "Whether voice message transcription is enabled"
|
|
23203
|
+
},
|
|
23204
|
+
"unified_conversation_id": {
|
|
23205
|
+
"type": "string",
|
|
23206
|
+
"format": "uuid",
|
|
23207
|
+
"nullable": true,
|
|
23208
|
+
"description": "ID linking this channel to a unified cross-platform conversation"
|
|
23209
|
+
},
|
|
23210
|
+
"is_home_platform": {
|
|
23211
|
+
"type": "boolean",
|
|
23212
|
+
"description": "Whether this is the agent's home platform channel"
|
|
23213
|
+
},
|
|
23214
|
+
"sender_allowlist": {
|
|
23215
|
+
"type": "array",
|
|
23216
|
+
"items": {
|
|
23217
|
+
"type": "string"
|
|
23218
|
+
},
|
|
23219
|
+
"nullable": true,
|
|
23220
|
+
"description": "List of allowed sender IDs for auto-respond"
|
|
23221
|
+
},
|
|
23222
|
+
"auto_respond_enabled": {
|
|
23223
|
+
"type": "boolean",
|
|
23224
|
+
"description": "Whether auto-respond is enabled for this channel"
|
|
23225
|
+
},
|
|
22423
23226
|
"created_at": {
|
|
22424
23227
|
"type": "string",
|
|
22425
23228
|
"format": "date-time"
|
|
@@ -22494,6 +23297,30 @@
|
|
|
22494
23297
|
"media_url": {
|
|
22495
23298
|
"type": "string"
|
|
22496
23299
|
},
|
|
23300
|
+
"is_voice_message": {
|
|
23301
|
+
"type": "boolean",
|
|
23302
|
+
"description": "Whether this message was a voice message"
|
|
23303
|
+
},
|
|
23304
|
+
"voice_file_id": {
|
|
23305
|
+
"type": "string",
|
|
23306
|
+
"nullable": true,
|
|
23307
|
+
"description": "Telegram voice file ID"
|
|
23308
|
+
},
|
|
23309
|
+
"voice_duration_secs": {
|
|
23310
|
+
"type": "integer",
|
|
23311
|
+
"nullable": true,
|
|
23312
|
+
"description": "Duration of voice message in seconds"
|
|
23313
|
+
},
|
|
23314
|
+
"transcription_status": {
|
|
23315
|
+
"type": "string",
|
|
23316
|
+
"nullable": true,
|
|
23317
|
+
"enum": [
|
|
23318
|
+
"pending",
|
|
23319
|
+
"completed",
|
|
23320
|
+
"failed"
|
|
23321
|
+
],
|
|
23322
|
+
"description": "Status of voice transcription"
|
|
23323
|
+
},
|
|
22497
23324
|
"created_at": {
|
|
22498
23325
|
"type": "string",
|
|
22499
23326
|
"format": "date-time"
|