---
title: "runJobAt"
canonical: "https://support.appfire.com/space/PSJ/15488077/runJobAt"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | runJobAt(silFile, args, date) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Runs a job at the specified date.

Runs a job at the specified date.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| silFile | String | Yes | The sil file name. |
| args | array string | Yes | The list of the arguments of the job. |
| date | Date | Yes | The date-time you wish the job to run. Must be in the future |

## Return Type

**None**

The returned value has no meaning.

## Example

This example will create a job that will run the sil script at the date specified.

```
date varDate = "2015-08-20T18:30:55";
runJobAt("script.sil", {project, key}, varDate);
```

In "script.sil" you can access the args using the next syntax:

```
string issueKey = argv[1];
```

## See also

> Macro (contentbylabel)