Skip to main content
DELETE
/
three-ds-scenarios
/
{three_ds_scenario_id}
C#
using Gr4vy;
using Gr4vy.Models.Components;

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

await sdk.ThreeDsScenarios.DeleteAsync(threeDsScenarioId: "7099948d-7286-47e4-aad8-b68f7eb44591");

// handle response
{
  "type": "error",
  "code": "bad_request",
  "status": 400,
  "message": "Generic error",
  "details": []
}
This endpoint requires the three-ds-scenarios.write scope.

Authorizations

Authorization
string
header
required

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

Headers

x-gr4vy-merchant-account-id
string | null

The ID of the merchant account to use for this request.

Example:

"default"

Path Parameters

three_ds_scenario_id
string<uuid>
required

The ID of the 3DS scenario

Example:

"7099948d-7286-47e4-aad8-b68f7eb44591"

Response

Successful Response