Skip to main content

Get information about a merchant profile

Use the merchantProfile query to get information about a single merchant profile. For example, you can get information about:

  • Information you provided when you added the merchant profile, such as expected average transaction amount
  • Requested updates to the merchant profile
  • base64 string for the merchant logo
  • Payment methods and their statuses

Query​

🔎 Open the query in API Explorer

query merchantProfileInfo {
merchantProfile(id: "$MERCHANT_PROFILE_ID") {
accountId
createdAt
id
merchantName
productType
statusInfo {
status
}
}
}

Payload​

{
"data": {
"merchantProfile": {
"accountId": "$YOUR_MERCHANT_ACCOUNT_ID",
"createdAt": "2023-12-14T14:20:44.236Z",
"id": "$MERCHANT_PROFILE_ID",
"merchantName": "MyBrand Paper Goods",
"productType": "Goods",
"statusInfo": {
"status": "Enabled"
}
}
}
}