{"id":529361,"date":"2026-03-10T05:40:07","date_gmt":"2026-03-10T05:40:07","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=529361"},"modified":"2026-04-29T15:00:10","modified_gmt":"2026-04-29T15:00:10","slug":"unopim-job-scheduler-documentation","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/","title":{"rendered":"User Guide For UnoPim Job Scheduler"},"content":{"rendered":"\n<p><a href=\"https:\/\/store.webkul.com\/unopim-job-scheduler.html\" target=\"_blank\" rel=\"noreferrer noopener\">UnoPim Job Scheduler<\/a> lets you easily create and manage scheduled jobs from a simple admin panel.<\/p>\n\n\n\n<p>It allows you to run jobs automatically at a fixed time, such as daily, weekly, or monthly. These jobs can import or export products and categories in UnoPim, helping save time and reduce manual work.<\/p>\n\n\n\n<p>You can also create custom schedules by setting a specific cron timing for a job. Once configured, the scheduler runs the job automatically at the defined time without manual action.<\/p>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Features<\/h3>\n<\/div><\/div>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Schedule import and export jobs using cron expressions<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create and manage jobs from the UnoPim admin panel<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Run jobs automatically based on the configured schedule<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set retry attempts and cancel all running jobs when needed<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>View job execution history and logs<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Get notifications when a job finishes or fails<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Secure access with role-based permissions<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Manage multiple scheduled jobs from one place<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Simple and easy-to-use interface<\/li>\n<\/ul>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Basic Requirement<\/h3>\n<\/div><\/div>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This module works with UnoPim version v1.0.0<\/li>\n\n\n\n<li>For the UnoPim installation, make sure your server meets these&nbsp;<a href=\"https:\/\/devdocs.unopim.com\/0.1\/introduction\/requirements.html#server-configuration\" target=\"_blank\" rel=\"noreferrer noopener\">system requirement<\/a><br><\/li>\n<\/ul>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Installation<\/h3>\n<\/div><\/div>\n\n\n\n<p>Download and unzip the extension, then merge the &#8220;packages&#8221; folder into the project&#8217;s root directory.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to  composer.json, add the following line under &#8216;autoload psr-4&#8217;:<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">&quot;Webkul\\\\JobScheduler\\\\&quot;: &quot;packages\/Webkul\/JobScheduler\/src\/&quot;<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Run the command:<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">composer dump-autoload<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to config\/app.php and add the following line under &#8216;providers&#8217;:<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">Webkul\\JobScheduler\\Providers\\JobSchedulerServiceProvider::class,<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Run the installer command: <\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">php artisan job-scheduler:install<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Alternatively, run migrations manually:<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">php artisan migrate --path=packages\/Webkul\/JobScheduler\/Database\/Migration<\/pre>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Set Up the Cron Entry<\/h3>\n<\/div><\/div>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add a single crontab entry on your server. This is the <strong>only<\/strong> cron entry needed \u2014 Laravel&#8217;s scheduler handles the rest:<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">* * * * * cd \/path\/to\/your\/unopim &amp;&amp; php artisan schedule:run &gt;&gt; \/dev\/null 2&gt;&amp;1<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To edit your crontab:<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">crontab -e<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Job executions are dispatched to the <code>job-scheduler<\/code> queue. Start a worker for this queue:<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">php artisan queue:work --queue=job-scheduler<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For production, use a process supervisor like <strong>Supervisor<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">&#091;program:job-scheduler-worker]\nprocess_name=%(program_name)s_%(process_num)02d\ncommand=php \/path\/to\/your\/unopim\/artisan queue:work --queue=job-scheduler --sleep=3 --tries=3 --max-time=3600\nautostart=true\nautorestart=true\nstopasgroup=true\nkillasgroup=true\nnumprocs=2\nredirect_stderr=true\nstdout_logfile=\/path\/to\/your\/unopim\/storage\/logs\/job-scheduler-worker.log<\/pre>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Set up a Schedule Job in UnoPim<\/h3>\n<\/div><\/div>\n\n\n\n<p>After successfully installing the module in UnoPim, you will see the Job Scheduler option on the left side of the Navigation panel.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp\" alt=\"Job Scheduler Installation\" class=\"wp-image-529419\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install-300x236.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install-250x196.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install-768x603.webp 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Click on <strong>Job Scheduler. <\/strong>Here, you can see three sub-options:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Scheduled Jobs<\/li>\n\n\n\n<li>Execution History<\/li>\n\n\n\n<li>Execution Logs<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-sub-options.webp\" alt=\"Job Scheduler Sub Option\" class=\"wp-image-529421\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-sub-options.webp 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-sub-options-300x236.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-sub-options-250x196.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-sub-options-768x603.webp 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Click on the <strong>Create Scheduled Job<\/strong> to create a new job with a scheduled time. A form will open where you need to fill in the following details:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Name:<\/strong> Enter the job name.<\/li>\n\n\n\n<li><strong>Code:<\/strong> Enter the job code. It is automatically generated when you type the name (for example, if the name is <em>Category Export<\/em>, the code will be generated as <strong>category_export<\/strong>), but you can change it if needed.<\/li>\n\n\n\n<li><strong>Type:<\/strong> Select the job type, such as <strong>Import<\/strong> or <strong>Export<\/strong>.<\/li>\n\n\n\n<li><strong>Entity Type:<\/strong> Choose the data type for the job, such as <strong>Products<\/strong> or <strong>Categories<\/strong>.<\/li>\n\n\n\n<li><strong>Job Instance:<\/strong> Select the existing job instance that you want to schedule.<\/li>\n\n\n\n<li><strong>Status:<\/strong> Enable or disable the job using the <strong>Active<\/strong> option.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-form.webp\" alt=\"Create Scheduled Jobs\" class=\"wp-image-529422\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-form.webp 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-form-300x236.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-form-250x196.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-form-768x603.webp 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>You can also configure <strong>execution settings<\/strong> like retry attempts, retry delay, chunk size, and timeout for the job.<\/p>\n\n\n\n<p><strong>Note:<\/strong> Before selecting a <strong>Job Instance<\/strong>, make sure the job is already created in <strong>UnoPim \u2192 Data Transfer \u2192 Import\/Export<\/strong>. Only existing import or export jobs from the Job Tracker can be scheduled here.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Schedule Settings<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Preset Schedules:<\/strong> Select when the job should run. The available options include:\n<ul class=\"wp-block-list\">\n<li>Every Minute (** * * * ***)<\/li>\n\n\n\n<li>Every 5 Minutes (*\/5 * * * *)<\/li>\n\n\n\n<li>Every 15 Minutes (*\/15 * * * *)<\/li>\n\n\n\n<li>Every 30 Minutes (*\/30 * * * *)<\/li>\n\n\n\n<li>Hourly (0 * * * *)<\/li>\n\n\n\n<li>Daily at Midnight (0 0 * * *)<\/li>\n\n\n\n<li>Daily at 6 AM (0 6 * * *)<\/li>\n\n\n\n<li>Weekly on Monday (0 0 * * 1)<\/li>\n\n\n\n<li>Monthly (0 0 1 * *)<\/li>\n\n\n\n<li>Custom \u2013 Enter your own cron expression.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Cron Expression:<\/strong> This field is automatically filled based on the preset schedule you select. If you choose <strong>Custom<\/strong>, you can manually enter the cron expression.<\/li>\n\n\n\n<li><strong>Timezone:<\/strong> Select the timezone in which the job should run so the schedule follows the correct local time.<\/li>\n\n\n\n<li><strong>Schedule Type:<\/strong>\n<ul class=\"wp-block-list\">\n<li><strong>Recurring:<\/strong> The job runs repeatedly based on the selected schedule.<\/li>\n\n\n\n<li><strong>One-time:<\/strong> The job runs only once at the scheduled time.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/schedule-time-setting.webp\" alt=\"select the schedule time\" class=\"wp-image-529426\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/schedule-time-setting.webp 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/schedule-time-setting-300x236.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/schedule-time-setting-250x196.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/schedule-time-setting-768x603.webp 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\"><strong>Notification Settings<\/strong><\/h3>\n<\/div><\/div>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Notification Email:<\/strong> Enter the email address where job notifications should be sent.<\/li>\n\n\n\n<li><strong>Notify on Success:<\/strong> Enable this option to receive an email when the job completes successfully.<\/li>\n\n\n\n<li><strong>Notify on Failure:<\/strong> Enable this option to receive an email if the job fails.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/notification-setting.webp\" alt=\"Notification Setting\" class=\"wp-image-529427\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/notification-setting.webp 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/notification-setting-300x236.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/notification-setting-250x196.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/notification-setting-768x603.webp 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Click on <strong>\u201cSave Job\u201d<\/strong> to save the scheduled job and apply the configured settings.<\/p>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Execution History<\/h3>\n<\/div><\/div>\n\n\n\n<p>Execution History section shows the record of all scheduled jobs that have run in the system. It helps administrators monitor job activity and check the status of each job execution.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Job Name:<\/strong> Displays the name of the scheduled job (for example, Product Export or Category Export).<\/li>\n\n\n\n<li><strong>State:<\/strong> Shows the current status of the job, such as <strong>Running<\/strong>, <strong>Completed<\/strong>, or <strong>Failed<\/strong>.<\/li>\n\n\n\n<li><strong>Trigger:<\/strong> Indicates how the job was started, such as <strong>scheduled<\/strong>.<\/li>\n\n\n\n<li><strong>Processed:<\/strong> Displays the number of records that were processed during the job execution.<\/li>\n\n\n\n<li><strong>Failed:<\/strong> Shows the number of records that failed during the process.<\/li>\n\n\n\n<li><strong>Duration:<\/strong> Displays how long the job took to complete.<\/li>\n\n\n\n<li><strong>Started At:<\/strong> Shows the date and time when the job started running.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history.webp\" alt=\"Job Scheduler History\" class=\"wp-image-529432\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history.webp 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-300x236.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-250x196.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-768x603.webp 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Actions:<\/strong> Click the <strong>view icon<\/strong> to see more details about that job execution.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-view.webp\" alt=\"Click on view\" class=\"wp-image-529466\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-view.webp 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-view-300x236.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-view-250x196.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-view-768x603.webp 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-details.webp\" alt=\"Job Execution History Details\" class=\"wp-image-529467\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-details.webp 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-details-300x236.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-details-250x196.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-history-details-768x603.webp 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>You can click <strong>\u201cCancel All Running\u201d<\/strong> to stop all jobs that are currently running.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/cancel-running-job.webp\" alt=\"Cancel the running job\" class=\"wp-image-529468\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/cancel-running-job.webp 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/cancel-running-job-300x236.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/cancel-running-job-250x196.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/cancel-running-job-768x603.webp 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Execution Logs<\/h3>\n<\/div><\/div>\n\n\n\n<p><strong>Execution Logs<\/strong> section shows detailed log messages for each job execution. It helps administrators understand what happened during a job run and quickly find any issues.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Job Name:<\/strong> Shows the name of the job, such as Product Export or Category Export.<\/li>\n\n\n\n<li><strong>Execution:<\/strong> Displays the execution ID of the job run. Each job run has a unique execution number.<\/li>\n\n\n\n<li><strong>Level:<\/strong> Shows the log level, such as <strong>INFO<\/strong>, which indicates normal job activity.<\/li>\n\n\n\n<li><strong>Message:<\/strong> Displays the log message describing what happened during the job, such as when the execution started or completed.<\/li>\n\n\n\n<li><strong>Row #:<\/strong> Shows the row number related to the log message (if applicable).<\/li>\n\n\n\n<li><strong>Logged At:<\/strong> Displays the date and time when the log entry was created.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-logs.webp\" alt=\"Job Execution Logs\" class=\"wp-image-529469\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-logs.webp 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-logs-300x236.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-logs-250x196.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-logs-768x603.webp 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>You can use this section to track job activity, review execution steps, and identify any errors during the job process.<\/p>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\">Support<\/h3>\n<\/div><\/div>\n\n\n\n<p>So, that was a bit about the User Guide of UnoPim Job Scheduler. For any queries or doubts, reach out to us at <a href=\"mailto:support@webkul.com\" target=\"_blank\" rel=\"noreferrer noopener\">support@webkul.com<\/a>. You can also raise a ticket at our&nbsp;<strong><a href=\"https:\/\/webkul.uvdesk.com\/en\/\" target=\"_blank\" rel=\"noreferrer noopener\">HelpDesk System.<\/a><\/strong><\/p>\n\n\n\n<p>Learn more about <a href=\"https:\/\/unopim.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">UnoPim<\/a> and explore our <a href=\"https:\/\/store.webkul.com\/unopim.html\" target=\"_blank\" rel=\"noreferrer noopener\">UnoPim extensions<\/a>.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>UnoPim Job Scheduler lets you easily create and manage scheduled jobs from a simple admin panel. It allows you to run jobs automatically at a fixed time, such as daily, weekly, or monthly. These jobs can import or export products and categories in UnoPim, helping save time and reduce manual work. You can also create <a href=\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":681,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[15700],"tags":[15699],"class_list":["post-529361","post","type-post","status-publish","format-standard","hentry","category-unopim","tag-unopim"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>User Guide for UnoPim Job Scheduler<\/title>\n<meta name=\"description\" content=\"UnoPim Job Scheduler automates import and export jobs with scheduled timing, helping manage product and category data easily and efficiently.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"User Guide for UnoPim Job Scheduler\" \/>\n<meta property=\"og:description\" content=\"UnoPim Job Scheduler automates import and export jobs with scheduled timing, helping manage product and category data easily and efficiently.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-10T05:40:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-29T15:00:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp\" \/>\n<meta name=\"author\" content=\"Pawan Nigam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pawan Nigam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/\"},\"author\":{\"name\":\"Pawan Nigam\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/12f6497b068eaa645387beb71a271b4d\"},\"headline\":\"User Guide For UnoPim Job Scheduler\",\"datePublished\":\"2026-03-10T05:40:07+00:00\",\"dateModified\":\"2026-04-29T15:00:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/\"},\"wordCount\":977,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp\",\"keywords\":[\"unopim\"],\"articleSection\":[\"unopim\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/\",\"url\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/\",\"name\":\"User Guide for UnoPim Job Scheduler\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp\",\"datePublished\":\"2026-03-10T05:40:07+00:00\",\"dateModified\":\"2026-04-29T15:00:10+00:00\",\"description\":\"UnoPim Job Scheduler automates import and export jobs with scheduled timing, helping manage product and category data easily and efficiently.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp\",\"width\":1120,\"height\":880},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"User Guide For UnoPim Job Scheduler\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/12f6497b068eaa645387beb71a271b4d\",\"name\":\"Pawan Nigam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09f5fe8b39b982dcd9ab25aa048725a70cfd90cf3f792c75ad094789b4f060a9?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09f5fe8b39b982dcd9ab25aa048725a70cfd90cf3f792c75ad094789b4f060a9?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Pawan Nigam\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/pawannigam-qa322\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"User Guide for UnoPim Job Scheduler","description":"UnoPim Job Scheduler automates import and export jobs with scheduled timing, helping manage product and category data easily and efficiently.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/","og_locale":"en_US","og_type":"article","og_title":"User Guide for UnoPim Job Scheduler","og_description":"UnoPim Job Scheduler automates import and export jobs with scheduled timing, helping manage product and category data easily and efficiently.","og_url":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2026-03-10T05:40:07+00:00","article_modified_time":"2026-04-29T15:00:10+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp","type":"","width":"","height":""}],"author":"Pawan Nigam","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Pawan Nigam","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/"},"author":{"name":"Pawan Nigam","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/12f6497b068eaa645387beb71a271b4d"},"headline":"User Guide For UnoPim Job Scheduler","datePublished":"2026-03-10T05:40:07+00:00","dateModified":"2026-04-29T15:00:10+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/"},"wordCount":977,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp","keywords":["unopim"],"articleSection":["unopim"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/","url":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/","name":"User Guide for UnoPim Job Scheduler","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp","datePublished":"2026-03-10T05:40:07+00:00","dateModified":"2026-04-29T15:00:10+00:00","description":"UnoPim Job Scheduler automates import and export jobs with scheduled timing, helping manage product and category data easily and efficiently.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/03\/job-scheduler-install.webp","width":1120,"height":880},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/unopim-job-scheduler-documentation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"User Guide For UnoPim Job Scheduler"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/12f6497b068eaa645387beb71a271b4d","name":"Pawan Nigam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09f5fe8b39b982dcd9ab25aa048725a70cfd90cf3f792c75ad094789b4f060a9?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09f5fe8b39b982dcd9ab25aa048725a70cfd90cf3f792c75ad094789b4f060a9?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Pawan Nigam"},"url":"https:\/\/webkul.com\/blog\/author\/pawannigam-qa322\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/529361","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/681"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=529361"}],"version-history":[{"count":18,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/529361\/revisions"}],"predecessor-version":[{"id":536881,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/529361\/revisions\/536881"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=529361"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=529361"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=529361"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}