Retrieve a merchant
Returns the merchant associated with the id.
Parameters
No parameters
Returns
Returns the merchant associated with the id.
- cURL
- Node.js
- Python
GET
/merchants/:mch_id
curl https://production.methodfi.com/merchants/mch_1 \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
GET
/merchants/:mch_id
const merchant = await method.merchants.get('mch_1');
GET
/merchants/:mch_id
merchant = method.merchants.get('mch_1')
RESPONSE
{
"mch_id": "mch_1",
"parent_name": "Chase",
"name": "Chase - Credit Cards",
"logo": "https://static.methodfi.com/mch-logos/1616215578688-chase.png",
"description": "Chase Mastercard & Visa",
"note": "For Credit Card Accounts Only",
"types": [
"credit_card"
],
"account_prefixes": [
"403116",
"438857"
],
"provider_ids": {
"plaid": [
"ins_3"
],
"mx": [
"chase"
],
"finicity": [
"5"
]
}
}