-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4cb6edb
commit 95662d9
Showing
5 changed files
with
79 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"openapi": "", | ||
"info": { | ||
"title": "", | ||
"version": "" | ||
}, | ||
"paths": { | ||
"/health": { | ||
"get": { | ||
"responses": { | ||
"200": { | ||
"description": "OK" | ||
} | ||
} | ||
} | ||
}, | ||
"/api/account/links/{partnerId}": { | ||
"post": { | ||
"description": "This method receives an authorization token. That token will be used to get the user's tokens." | ||
} | ||
}, | ||
"/account/pairs/{pairId}/linking-caps": { | ||
"get": {} | ||
}, | ||
"/api/aoi/subscriptions": { | ||
"post": { | ||
"description": "This method will create a new AOI subscription" | ||
} | ||
}, | ||
"/api/aoi/subscriptions/pair/{pairId}": { | ||
"get": { | ||
"description": "This method will return the AOI subscription based on the user session and the linked account" | ||
}, | ||
"delete": { | ||
"description": "This method will delete the current aoi subscription for a given pair" | ||
} | ||
}, | ||
"/api/exchange/orders/{transactionId}": { | ||
"get": {} | ||
}, | ||
"/api/feedback/contact-us": { | ||
"post": {} | ||
}, | ||
"/maintenance/partners/{partnerId}/accounts/{accountId}/history": { | ||
"delete": {} | ||
}, | ||
"/partners/accounts/{accountId}/links/{partnerId}/exists": { | ||
"get": { | ||
"description": "Proxy to PAUL's check if link exists" | ||
} | ||
} | ||
}, | ||
"components": {} | ||
} |