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"
}
]
}List all 3DS configurations for a merchant account.
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"
}
]
}merchant-accounts.read scope.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the merchant account.
"merchant-12345"
ISO 4217 currency code (3 characters) to filter 3DS configurations.
^[A-Z]{3}$"USD"
Successful Response
A list of items returned for this request.
Show child attributes
Was this page helpful?