renamed the new endpoints

This commit is contained in:
Felix Baumkötter 2023-07-12 14:47:04 +00:00
parent 6379a3c27f
commit da649dad93

View File

@ -858,6 +858,41 @@
} }
] ]
}, },
"/my/agent": {
"get": {
"description": "Fetch your agent's details.",
"operationId": "get-my-agent",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"properties": {
"data": {
"$ref": "../models/Agent.json"
}
},
"required": [
"data"
],
"type": "object"
}
}
},
"description": "Successfully fetched agent details."
}
},
"security": [
{
"AgentToken": []
}
],
"summary": "Get Agent",
"tags": [
"Agents"
]
}
},
"/agents": { "/agents": {
"get": { "get": {
"description": "Fetch agents details.", "description": "Fetch agents details.",
@ -948,7 +983,7 @@
"description": "Successfully fetched agent details." "description": "Successfully fetched agent details."
} }
}, },
"summary": "Get Agent", "summary": "Get Public Agent",
"tags": [ "tags": [
"Agents" "Agents"
], ],
@ -972,41 +1007,6 @@
] ]
} }
}, },
"/my/agent": {
"get": {
"description": "Fetch your agent's details.",
"operationId": "get-my-agent",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"properties": {
"data": {
"$ref": "../models/Agent.json"
}
},
"required": [
"data"
],
"type": "object"
}
}
},
"description": "Successfully fetched agent details."
}
},
"security": [
{
"AgentToken": []
}
],
"summary": "Get Agent",
"tags": [
"Agents"
]
}
},
"/my/contracts": { "/my/contracts": {
"get": { "get": {
"description": "Return a paginated list of all your contracts.", "description": "Return a paginated list of all your contracts.",