_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'}

Last updated