REST API - Setting a timeout limit

Hi,

I’m trying to change the job timeout limit when I submit to the REST API. Per the manual submission docs I should be able to set TaskTimeoutSeconds or TaskTimeoutMinutes but this doesn’t seem to work. The default of TaskTimeoutSeconds=10800 is always present in the submission params.
Do I have to do some sort of override flag? If so, I’m not seeing it in the documentation.

Thanks!

Share your code snippet

It’s something along these lines:

{
    "JobInfo": {
        "BatchName": "batch01",
        "Group":"python3",    
        "Name":"Job01",
        "Pool":"low",
        "Plugin":"Python",
        "TaskTimeoutSeconds":"14400"
    },
    "PluginInfo": {
        "Version":"3.6",
        "ScriptFile":"C:/test_script.py"
    },
    "AuxFiles":[]
}

Which I figured would change the task timeout to 4 hours but it always ends up as 3 (which is our global deadline default).