Skip to main content
GET
/
merchant-accounts
/
{merchant_account_id}
/
three-ds-configurations
C#
using Gr4vy;
using Gr4vy.Models.Components;

var sdk = new Gr4vySDK(
    id: "example",
    server: SDKConfig.Server.Sandbox,
    bearerAuthSource: Auth.WithToken(privateKey),
    merchantAccountId: "default"
);

var res = await sdk.MerchantAccounts.ThreeDsConfiguration.ListAsync(merchantAccountId: "merchant-12345");

// handle response
{
  "items": [
    {
      "merchant_acquirer_bin": "<string>",
      "merchant_acquirer_id": "<string>",
      "merchant_name": "<string>",
      "merchant_country_code": "<string>",
      "merchant_category_code": "<string>",
      "merchant_url": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "merchant_account_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "scheme": "accel",
      "currency": "USD",
      "metadata": {},
      "type": "merchant-account.three-ds-configuration"
    }
  ]
}
This endpoint requires the merchant-accounts.read scope.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

merchant_account_id
string
required

The ID of the merchant account.

Example:

"merchant-12345"

Query Parameters

currency
string | null

ISO 4217 currency code (3 characters) to filter 3DS configurations.

Example:

"USD"

Response

Successful Response

items
MerchantAccountThreeDSConfiguration · object[]
required

A list of items returned for this request.