---
title: "unscheduleJob"
canonical: "https://support.appfire.com/space/PSCONF/15303741/unscheduleJob"
format: markdown
---
> Macro (aura-html)

> Macro (table-plus)
> 
> |  |  |  |  |
> | --- | --- | --- | --- |
> | **Syntax** | unscheduleJob(jobKey) | **Package** |  |
> | **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Un-schedules a job.

Un-schedules a job.

## Parameters

> Macro (table-plus)
> 
> | Parameter name | Type | Required | Description |
> | --- | --- | --- | --- |
> | jobKey | String | Yes | The job key. |

## Return Type

**None**

The returned value has no meaning.

## Example

```javascript
for(string jobKey in getScheduledJobKeys()){
    unscheduleJob(jobKey);
}
```

The SIL™ script above deletes all the scheduled jobs.

## See also

> Macro (contentbylabel)