Skip to content

Commit

Permalink
docs: fix query params names
Browse files Browse the repository at this point in the history
  • Loading branch information
luislhl committed Dec 5, 2023
1 parent c80256e commit ef44384
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/api-docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -3841,18 +3841,18 @@ const defaultApiDocs = {
summary: 'Return the health of the wallet headless.',
parameters: [
{
name: 'wallet-ids',
name: 'wallet_ids',
in: 'query',
description: 'Define wallet ids to check, comma-separated. If not provided, will not check any wallet.',
description: 'Wallet ids to check, comma-separated. If not provided, will not check any wallet.',
required: false,
schema: {
type: 'string',
},
},
{
name: 'include-fullnode',
name: 'include_fullnode',
in: 'query',
description: 'Define if fullnode health should be checked.',
description: 'Whether fullnode health should be checked and included in the response.',
required: false,
schema: {
type: 'boolean',
Expand All @@ -3861,7 +3861,7 @@ const defaultApiDocs = {
{
name: 'include_tx_mining',
in: 'query',
description: 'Define if tx mining service health should be checked.',
description: 'Whether tx mining service health should be checked and included in the response.',
required: false,
schema: {
type: 'boolean',
Expand Down

0 comments on commit ef44384

Please sign in to comment.