Error: ConvertDocument. Exception: Application daily api calls limit exceeded. Daily limit is 100 AP

Hi,

I’ve checked the number of api calls in last few days… They are very few… May i please know what this error means? what is AP in daily limit 100 AP?

Thanks,
Hemant

@tnmadmin

The error message you are encountering indicates that you have exceeded the daily limit of API calls, which is set at 100 calls per day. This limit is implemented to manage usage and ensure fair access for all users.

If you believe you have not made that many calls, consider checking for any automated processes or applications that might be making calls on your behalf. You can also monitor your API usage through your account dashboard to gain a clearer understanding of your activity.

For further assistance, please refer to the documentation or support resources related to your specific API usage.

If you have any more questions or need further clarification, feel free to ask!

Thanks for the quick response.

This error message seems incorrect.
Facing issue with one specific word file of approx. 5MB. Able to process other files…

That says the limit is not the issue.

Attached is the document that was working yesterday and failed today.
698419_v6.docx (4.6 MB)

What exactly you do with that file? What api method do you use?

using npm package Aspose.Words-Cloud version=23.7.0

WordsApi wordsApi = new WordsApi(App.AppSid, App.AppKey);

                var stream = this.GetFileStream(this.Request);

                ConvertDocumentRequest convertDocumentRequest = new ConvertDocumentRequest(stream, format);
                Stream outputStream = await wordsApi.ConvertDocument(convertDocumentRequest);

                //RETURN html as string
                byte[] buffer = new byte[outputStream.Length];
                outputStream.Read(buffer, 0, (int)outputStream.Length);

                ConvertFileResult convertFileResult = new ConvertFileResult { Content = Encoding.UTF8.GetString(buffer) };

This code takes an uploaded Word document and converts it into HTML format using Aspose.Words Cloud API, then returns the converted content as text (HTML string).

I couldn’t reproduce that issue on my side, please upgrade sdk to the latest version which is 25.10.
Also could you please share your client id, I will check in the logs, maybe can find something there.

#241106132548

Thanks for sharing