> For the complete documentation index, see [llms.txt](https://docs.fieldmotion.com/fieldmotion-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fieldmotion.com/fieldmotion-api-docs/quote/_unlinkjob.md).

# \_unlinkJob

Unlinks a specified Appointment from a Quote.

### Parameters

#### id

The ID of the Quote.

#### job\_id

The ID of the Appointment to be unlinked from the Quote.

### Example

```
FM_api('Quote_unlinkJob', [
    'id' => '77688',
    'job_id' => '37930'
    ]
);
```

### Results

#### On Success

```
{'ok':1}
```

#### On Failure

If the "id" parameter is missing or has a value less than 1:

```
{'error':'missing or invalid parameter: id'}
```

If the "job\_id" parameter is missing or has a value less than 1:

```
{'error':'missing or invalid parameter: job_id'}
```
