API Reference
Get Payment Method information
API Reference
- POSTGet Client Token
- GETGet Trades
- POSTCreate Trade
- GETGet Quote
- POSTSend Identity information
- POSTAccept Identity documents
- GETGet Supported Tokens
- GETGet Enabled Tokens
- GETGet Payment Method information
- GETGet Order(s)
- GETGet Bank Account
- GETFetch KYC
- GETGet Customers
- POSTPost Customer Information
- POSTSend Bank Information
- GETGet Geocoverage
- GETGet Fiat Currencies
API Reference
Get Payment Method information
Get information about User’s payment methods
GET
/
user
/
{user_id}
/
payment-methods
curl --request GET \
--url https://api.sandbox.sardine.ai/v1/user/{user_id}/payment-methods
{
"payment_method_type": "<string>",
"payment_method": {
"bankAccountId": "5b26b598-a880-4e32-8c41-126aa0206857",
"accountNumber": "98322271627",
"name": "John Doe",
"officialName": "JP Morgan Chase Checking account",
"routingNumber": "322271627",
"subtype": "checking",
"type": "string",
"wireRoutingNUmber": "32222171627",
"institutionName": "JP Morgan Chase",
"status": "connected"
}
}
Path Parameters
ID of User
Response
200 - application/json
OK
Unique identifier for the given user.
Bank account number
User set name of account
Bank designated name of account
The date that the user was created.
Subtype of account
Type of account, checking, saving etc
Routing number for bank account
Name of the bank at which the account is open
Available options:
connected
, disconnected
curl --request GET \
--url https://api.sandbox.sardine.ai/v1/user/{user_id}/payment-methods
{
"payment_method_type": "<string>",
"payment_method": {
"bankAccountId": "5b26b598-a880-4e32-8c41-126aa0206857",
"accountNumber": "98322271627",
"name": "John Doe",
"officialName": "JP Morgan Chase Checking account",
"routingNumber": "322271627",
"subtype": "checking",
"type": "string",
"wireRoutingNUmber": "32222171627",
"institutionName": "JP Morgan Chase",
"status": "connected"
}
}