_setNotes

Sets notes for a Job Type.

Parameters

id

The id of the Job Type.

value

The notes made for the Job Type.

Example

FM_api(
    'JobType_setNotes',[
        'id' => '122039',
        'value' => 'Test Notes'
    ]
);

Sets a Job Type assigned the ID "122039" with the notes "Test Notes"

Results

On Success

On Failure

If no ID parameter is included

If no value parameter is included

If there is no Job Type with the provided id

Last updated