Hello,
I am trying to process application in Acumatica to create invoice. I used Resource Owner Password to generate the token
HTTPPOST
<Acumatica ERP Instance URL>/identity/connect/token
var request = new HttpRequestMessage(HttpMethod.Post, configuration["Acumatica:TokenUrl"]);
var collection = new List<KeyValuePair<string, string>>
{
new("grant_type", "password"),
new("client_id", configuration["Acumatica:ClientId"]),
new("client_secret", configuration["Acumatica:ClientSecret"]),
new("username", configuration["Acumatica:Username"]),
new("password", configuration["Acumatica:Password"]),
new("scope", configuration["Acumatica:scope"])
};
var content = new FormUrlEncodedContent(collection);
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();I am getting error API Login Limit
for the first time call.
any help would be appreciated.
