Skip to content

Commit

Permalink
feat(payments_v2): add payment method list endpoint (#6805)
Browse files Browse the repository at this point in the history
Co-authored-by: Sanchith Hegde <[email protected]>
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Dec 23, 2024
1 parent 1fc9410 commit d4b3dbc
Show file tree
Hide file tree
Showing 45 changed files with 1,314 additions and 728 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ target/

### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
Expand Down Expand Up @@ -268,4 +268,4 @@ creds.json
/.direnv

# Nix services data
/data
/data
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
openapi: get /v2/profiles/{id}/connector-accounts
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
openapi: get /v2/merchant-accounts/{id}/profiles
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
openapi: post /v2/connector-accounts
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
openapi: get /v2/connector-accounts/{id}
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
openapi: put /v2/connector-accounts/{id}
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
openapi: delete /v2/connector-accounts/{id}
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
openapi: get /v2/customers/{id}/saved-payment-methods
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
openapi: get /v2/payments/{id}/payment-methods
---
11 changes: 4 additions & 7 deletions api-reference-v2/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@
"navigation": [
{
"group": "Get Started",
"pages": [
"introduction"
]
"pages": ["introduction"]
},
{
"group": "Essentials",
Expand All @@ -42,6 +40,7 @@
"api-reference/payments/payments--get-intent",
"api-reference/payments/payments--update-intent",
"api-reference/payments/payments--session-token",
"api-reference/payments/payments--payment-methods-list",
"api-reference/payments/payments--confirm-intent",
"api-reference/payments/payments--get"
]
Expand Down Expand Up @@ -135,10 +134,8 @@
"github": "https://github.com/juspay/hyperswitch",
"linkedin": "https://www.linkedin.com/company/hyperswitch"
},
"openapi": [
"openapi_spec.json"
],
"openapi": ["openapi_spec.json"],
"api": {
"maintainOrder": true
}
}
}
Loading

0 comments on commit d4b3dbc

Please sign in to comment.