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": []
}Removes a 3DS scenario from our system. Only available in sandbox environments.
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": []
}three-ds-scenarios.write scope.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the merchant account to use for this request.
"default"
The ID of the 3DS scenario
"7099948d-7286-47e4-aad8-b68f7eb44591"
Successful Response
Was this page helpful?