Skip to content

Commit

Permalink
PAN-2338: Adding tags for markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekv committed Nov 18, 2024
1 parent 67b78a6 commit 5e878fe
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pantos/servicenode/restapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ def post(self) -> flask.Response:
"""
Endpoint for submitting a token transfer request.
---
tags:
- Transfer
requestBody:
description: Transfer request
required: true
Expand Down Expand Up @@ -287,6 +289,8 @@ def get(self, task_id: str) -> flask.Response:
"""
Endpoint that returns the status of a transfer.
---
tags:
- Transfer Status
parameters:
- in: path
name: task_id
Expand All @@ -306,10 +310,10 @@ def get(self, task_id: str) -> flask.Response:
task_id:
type: string
source_blockchain_id:
$ref: "#/components/schemas/ \
$ref: "#/components/schemas/\
_Bids/properties/source_blockchain"
destination_blockchain_id:
$ref: "#/components/schemas/ \
$ref: "#/components/schemas/\
_Bids/properties/destination_blockchain"
sender_address:
type: string
Expand Down Expand Up @@ -388,6 +392,8 @@ def get(self) -> flask.Response:
Endpoint that returns a list of bids for a given source and \
destination blockchain.
---
tags:
- Bids
parameters:
- in: query
name: source_blockchain
Expand Down

0 comments on commit 5e878fe

Please sign in to comment.