We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b9fbb1 commit a05e1b8Copy full SHA for a05e1b8
1 file changed
two-factor-authentication.md
@@ -3,9 +3,9 @@ Initialize 2FA API client:
3
```csharp
4
var configuration = new Configuration()
5
{
6
- BasePath = URL_BASE_PATH,
7
- ApiKeyPrefix = new Dictionary<string, string> { { "Authorization", API_KEY_PREFIX } },
8
- ApiKey = new Dictionary<string, string> { { "Authorization", API_KEY } }
+ BasePath = "<put your base URL here>",
+ ApiKeyPrefix = "<put API key prefix here (App/Basic/IBSSO/Bearer)>",
+ ApiKey = "<put your API key here>"
9
};
10
11
var tfaApi = new TfaApi(configuration);
0 commit comments