mirror of
https://github.com/valitydev/openapi-transfer.git
synced 2024-11-06 01:45:18 +00:00
27 lines
629 B
YAML
27 lines
629 B
YAML
openapi: 3.0.0
|
|
info:
|
|
version: 0.0.1
|
|
title: Transfer API
|
|
description:
|
|
$ref: './docs/api.md'
|
|
termsOfService: https://empayre.com/terms-of-use/
|
|
license:
|
|
name: Apache 2.0
|
|
url: https://www.apache.org/licenses/LICENSE-2.0.html
|
|
servers:
|
|
- url: 'https://api.empayre.com/v1'
|
|
security:
|
|
- bearer: []
|
|
paths:
|
|
'/transfer/fix-rate':
|
|
$ref: './paths/transfer-fix-rate.yaml'
|
|
'/transfer/confirm':
|
|
$ref: './paths/transfer-confirm.yaml'
|
|
'/transfer/{transferId}':
|
|
$ref: './paths/transfer@{transferId}.yaml'
|
|
|
|
components:
|
|
securitySchemes:
|
|
bearer:
|
|
$ref: './components/security-schemes/Bearer.yaml'
|