Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eng 6888 dotnet 3.0.x documentation #409

Draft
wants to merge 23 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Preconfigured Proxies and Tenants
  • Loading branch information
greathouse committed Jul 2, 2024
commit 3d4cbe945c695240b7cc6119200beaf490ea551a
8 changes: 7 additions & 1 deletion docs/api/proxies/pre-configured-proxies.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,13 @@ var apiInstance = new ProxiesApi(config);
var id = Guid.Parse("");
var patchProxyRequest = new PatchProxyRequest()
{
// Additional parameters
Name = ...
DestinationUrl = ...
RequestTransform = ...
ResponseTransform = ...
Application = ...
_Configuration = ...
RequireAuth = ...
};

apiInstance.Patch(id, patchProxyRequest);
Expand Down
5 changes: 3 additions & 2 deletions docs/api/tenants/tenants.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,10 @@ config.BasePath = "https://api.basistheory.com";
config.AddApiKey("BT-API-KEY", "YOUR_API_KEY");

var apiInstance = new TenantsApi(config);
var updateTenantRequest = new UpdateTenantRequest(/*required parameters*/)
var updateTenantRequest = new UpdateTenantRequest()
{
// Additional parameters
Name = ...
Settings = ...
};

Tenant result = apiInstance.Update(updateTenantRequest);
Expand Down
Loading