API return 204 for large file build

As my previous post, API return 204 for my file build.
I found out the reason!

My file have ~3000 strings (~17000 words), always return 204 (NO_CONTENT???) when calling file build api. But when i remove almost all strings (remaining 1 string), api call return 200 (OK).

Then i make its copy with ~3000 strings to other file (different file id), try to call to that file. Yeah! 204 again.

So… am I become Enterprise user to using large file build for API?

Hi @SITUVNgcd

You don’t need to migrate to an Enterprise plan, as we don’t have limits on file sizes or string counts that would cause this behavior.

Please first check if the file has any excluded languages under File Settings > Languages.

Additionally, take a look at your project export settings to see if you have “Skip untranslated files” enabled. If that setting is turned on and there is even a single untranslated string in your 3,000-string file, the API will skip the export

1 Like

Hell yeah! I turn off this setting and its OK now. Thanks!