Skip to content

Commit

Permalink
update api/manager.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Apr 15, 2024
1 parent 4021db7 commit 7a91671
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions api/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,39 @@ paths:
summary: Get an account.
tags:
- Accounts
put:
description: Update the account
operationId: updateAccount
parameters:
- in: path
name: id
required: true
schema:
type: integer
format: int64
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateAccountRequest'
required: true
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/Account'
description: Found
"401":
description: Authentication Failure
"404":
description: Not Found
security:
- BasicAuth: []
- OAuth2: []
summary: Update an account.
tags:
- Accounts
/addon/configurations:
get:
description: List the Add-ons configurations
Expand Down Expand Up @@ -2874,6 +2907,15 @@ components:
type: string
description: The URLs
uniqueItems: true
UpdateAccountRequest:
type: object
properties:
country:
type: string
language:
type: string
url:
type: string
VectorSearchQueryRequest:
type: object
description: A query request.
Expand Down

0 comments on commit 7a91671

Please sign in to comment.