Merchant accounts
List merchant accounts
Payments
- Transactions
- Buyers
- Checkout Sessions
- Payment links
- Payment options
- Payouts
- Refunds
- Sessions
- Settlement records
Instruments
- Card schemes
- Card details
- Digital wallets
- Gift cards
- Payment methods
- Payment method definitions
Vault
- Account updater
- Network tokens
- Payment service tokens
- Vault Forward
- Vault Forward endpoints
- Vault Forward authentication
Connections
- All services
- Payment services
- Digital wallets
- Anti-fraud services
- Gift-card services
Other
- Flow
- Merchant accounts
- Reports
- Report executions
- Webhook subscriptions
Merchant accounts
List merchant accounts
Lists all merchant accounts in an instance.
GET
/
merchant-accounts
curl --request GET \
--url https://api.{gr4vy_id}.gr4vy.app/merchant-accounts \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"type": "merchant-account",
"id": "plantly-uk",
"display_name": "Plantly UK",
"outbound_webhook_url": "https://www.example.com/webhook",
"outbound_webhook_username": "gr4vy",
"outbound_webhook_password": "********",
"visa_network_tokens_requestor_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"visa_network_tokens_app_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"amex_network_tokens_requestor_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"amex_network_tokens_app_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"mastercard_network_tokens_requestor_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"mastercard_network_tokens_app_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"loon_client_key": "7DD771287D0024BA418F8F7ECC7DF1CD",
"loon_secret_key": "********",
"loon_accepted_schemes": [
"mastercard",
"visa"
],
"account_updater_enabled": true,
"account_updater_request_encryption_key": "example-encryption-key",
"account_updater_request_encryption_key_id": "example-encryption-key-id",
"account_updater_response_decryption_key": "example-decryption-key",
"account_updater_response_decryption_key_id": "example-decryption-key-id",
"created_at": "2022-02-01T14:20:00.000+00:00",
"updated_at": "2022-02-01T14:20:00.000+00:00",
"over_capture_amount": 1000,
"over_capture_percentage": 20
}
],
"limit": 1,
"next_cursor": "ZXhhbXBsZTE",
"previous_cursor": null
}
This endpoint requires the merchant-accounts.read
scope.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Returns a paginated list of merchant accounts.
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.{gr4vy_id}.gr4vy.app/merchant-accounts \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"type": "merchant-account",
"id": "plantly-uk",
"display_name": "Plantly UK",
"outbound_webhook_url": "https://www.example.com/webhook",
"outbound_webhook_username": "gr4vy",
"outbound_webhook_password": "********",
"visa_network_tokens_requestor_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"visa_network_tokens_app_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"amex_network_tokens_requestor_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"amex_network_tokens_app_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"mastercard_network_tokens_requestor_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"mastercard_network_tokens_app_id": "e50fa0da-903d-4d54-aacc-4cac57d48df2",
"loon_client_key": "7DD771287D0024BA418F8F7ECC7DF1CD",
"loon_secret_key": "********",
"loon_accepted_schemes": [
"mastercard",
"visa"
],
"account_updater_enabled": true,
"account_updater_request_encryption_key": "example-encryption-key",
"account_updater_request_encryption_key_id": "example-encryption-key-id",
"account_updater_response_decryption_key": "example-decryption-key",
"account_updater_response_decryption_key_id": "example-decryption-key-id",
"created_at": "2022-02-01T14:20:00.000+00:00",
"updated_at": "2022-02-01T14:20:00.000+00:00",
"over_capture_amount": 1000,
"over_capture_percentage": 20
}
],
"limit": 1,
"next_cursor": "ZXhhbXBsZTE",
"previous_cursor": null
}