You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SDK documentation for the International Street API contains misleading implementation guidance. When following the example code that uses .WithLicense(), the API returns a 402 Payment Required error, despite having valid credentials. However, the same code works correctly when the .WithLicense() method is removed.
Current Behavior
Using .WithLicense(new List<string> { "international-global-plus-cloud" }) results in:
"Payment Required: There is no active subscription for the account associated with the credentials submitted with the request."
Removing the .WithLicense() call allows the API to function as expected.
Example Code
// Fails with 402 Payment Requiredvarclient=newClientBuilder(authId,authToken).WithLicense(newList<string>{"international-global-plus-cloud"}).BuildInternationalStreetApiClient();// Works correctlyvarclient=newClientBuilder(authId,authToken).BuildInternationalStreetApiClient();
The text was updated successfully, but these errors were encountered:
Issue Description
The SDK documentation for the International Street API contains misleading implementation guidance. When following the example code that uses
.WithLicense()
, the API returns a 402 Payment Required error, despite having valid credentials. However, the same code works correctly when the.WithLicense()
method is removed.Current Behavior
.WithLicense(new List<string> { "international-global-plus-cloud" })
results in:"Payment Required: There is no active subscription for the account associated with the credentials submitted with the request."
.WithLicense()
call allows the API to function as expected.Example Code
The text was updated successfully, but these errors were encountered: