Merchant Service
User Management
View merchants by ID
Returns an array with information for one or more merchant accounts associated with the API user.
To view the complete list of merchant accounts assigned to the API user, do not include any merchant IDs in the request.
<!-- theme: warning --><div style="display:none;">⚠️ Try It
To use the Try It feature for this endpoint, you must use the credentials for your Sandbox API user.
Request parameters
- merchantIds
Response parameters
- merchantId
- name
- currencyId
- isPaymentConfigured
- isPaymentRecoveryConfigured
- processor
- processor.id
- kountMerc
- kount
- kount.id
- kount.merc
- kount.merchantId
- isApmConfigured
- hasAuthorizeNetApmCreds
- createdAt
- updatedAt
get/merchant/v3
Query parameters
merchantIdsstring
Example:100038,100039
A comma-separated list of the merchant IDs to view information for. If the API user does not have access to the specified merchant ID, the response returns as successful (200) but does not include that merchant information in the response. To return all applicable merchant IDs for the API user, leave the parameter empty or do not include this as a query parameter in the request.
Response
Success
Example response
[
{
"merchantId": "000999",
"name": "John Doe LLC",
"currencyId": "840",
"isPaymentConfigured": true,
"isPaymentRecoveryConfigured": true,
"kountMerc": "717000",
"kount": {
"id": 109458,
"merc": "717000",
"merchantId": "100039"
},
"createdAt": "2018-05-16T16:33:22.000Z",
"updatedAt": "2019-03-06T15:18:21.000Z"
}
]