{"id":23561,"date":"2018-11-22T16:34:48","date_gmt":"2018-11-22T18:34:48","guid":{"rendered":"https:\/\/powertic.com\/?p=23561"},"modified":"2021-12-20T12:54:14","modified_gmt":"2021-12-20T15:54:14","slug":"mautic-cron-jobs-setup-complete-guide","status":"publish","type":"post","link":"https:\/\/powertic.com\/en\/mautic-cron-jobs-setup-complete-guide\/","title":{"rendered":"Mautic cron jobs setup: A Complete Guide"},"content":{"rendered":"<div data-elementor-type=\"wp-post\" data-elementor-id=\"23561\" class=\"elementor elementor-23561\">\n\t\t\t\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-107c2508 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"107c2508\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7f575a97\" data-id=\"7f575a97\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7cbddd55 elementor-widget elementor-widget-text-editor\" data-id=\"7cbddd55\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.7.4 - 31-08-2022 *\/\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#818a91;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#818a91;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}<\/style>\t\t\t\t<p>A complete guide with all the Mautic cron job setups you need so your Mautic runs perfectly in your VPS installation.<\/p>\n<h2>Setting up the right sequence of Mautic cron jobs<\/h2>\n<p>Although Mautic doesn't normally allocate many server resources it's still extremely important to plan the execution of Mautic cron jobs in the right sequence in order to avoid locking and cron job conflicts during Mautic cron job execution.&nbsp;<\/p>\n<blockquote>\n<p>All the Mautic documentation suggests you avoid running multiple cron jobs at the same time.<\/p>\n<\/blockquote>\n<p>I have been working exclusively with Open Source systems for many years, obviously one of the reasons I was drawn to Mautic was the low acquisition costs and the many advantages that this environment can provide,, such as analyzing, changing and even correcting bugs in the source code. A special thank you for our <a href=\"https:\/\/www.bureauworks.com\/blog\/what-is-subtitle-translation\/\" target=\"_blank\" rel=\"noopener\">subtitle translation<\/a> on this article and <a href=\"https:\/\/www.bureauworks.com\/blog\/best-business-translation-services\/\" target=\"_blank\" rel=\"noopener\">all business translation services<\/a>.<\/p>\n<p>After an analysis of the Mautic source code, I understood that the right cron jobs sequence&nbsp;is fundamental for running all the outstanding Mautic features such as:<\/p>\n<ul>\n<li>List Updates;<\/li>\n<li>Campaign Updates;<\/li>\n<li>Campaign Executions;<\/li>\n<li>E-mail Processing;<\/li>\n<li>Monitored Mailbox Processing;<\/li>\n<li>Processing IP base updates;<\/li>\n<li>Removing old data from the Mautic Database.<\/li>\n<\/ul>\n<h2>Understand which Mautic Cron Jobs are the most important<\/h2>\n<p>Mautic has an extensive list of commands that can be used for database maintenance, cache cleaning, and platform updating; I listed the main Mautic commands that can be used as cron Mautic below:<\/p>\n<h2>Cron job to update Lists \/ Segments in Mautic<\/h2>\n<p>This is the first mautic cron that we configure because it is responsible for updating our smart lists\/segments that have filters.<\/p>\n<blockquote>\n<p>Remember that Mautic processes 300 leads by performing this task and you can increase or decrease this number of contacts depending on the features available on your server.<\/p>\n<\/blockquote>\n<p>See the default setting for updating lists below:<\/p>\n<p><code>php app\/console mautic:segments:update<\/code><\/p>\n<p>You can increase the number of leads by running this cron with the <strong><em>-batch-limit = X<\/em><\/strong> parameter, as follows:<\/p>\n<p><code>php app\/console mautic:segments:update --batch-limit=500<\/code><\/p>\n<h2>Cron jobs setup for Campaigns<\/h2>\n<p>Note that the Mautic separates this functionality in&nbsp;two crons: one is responsible for adding the leads in the campaigns (<strong><em>mautic:campaigns:update)<\/em><\/strong>&nbsp;and another is responsible for performing the necessary actions with these leads inside Mautic campaigns (<em><b>mautic:campaigns:trigger<\/b>)<\/em>.<\/p>\n<h2>Updating Campaigns<\/h2>\n<p>Now, we have to set up the cron job responsible for inserting a lead into a specific campaign.<\/p>\n<blockquote>\n<p>Remember that Mautic processes 100 events by performing this task and that you can increase or decrease this number of contacts depending on the features available on your server.<\/p>\n<\/blockquote>\n<p>Here's the default command for the campaign update task:<\/p>\n<p><code>php app\/console mautic:campaigns:rebuild<\/code><\/p>\n<p>You can increase the number of events processed by executing this task with the paramenter&nbsp;<em><strong>&#8211;batch-limit=X<\/strong><\/em>, like this example below:<br><code>php app\/console mautic:campaigns:update&nbsp;--batch-limit=200<\/code><\/p>\n<h2>Executing Campaign Events<\/h2>\n<p>Now we go to the second step which is the task of executing the decisions and events within the campaign.<\/p>\n<p>Here's the default command for the campaign execution task:<br><code>php app\/console mautic:campaigns:trigger<\/code><\/p>\n<p>You can increase the number of events processed by executing this task with parameter&nbsp;<em><strong>&#8211;batch-limit=X<\/strong><\/em>, like this example below:<br><code>php app\/console mautic:campaigns:trigger&nbsp;--batch-limit=200<\/code><\/p>\n<h2>Cron Job for Batch E-mailing in Mautic<\/h2>\n<p>If you use the queue feature in Mautic to send email batches, you must also be sure to set up this task&nbsp;below:<br><code>php app\/console mautic:emails:send<\/code><\/p>\n<p>This will empower Mautic with the ability to send the emails that are in the queue according to the settings made in the panel itself.<\/p>\n<h2>Cron Job for Sending Scheduled Reports<\/h2>\n<p>If you schedule reports to be sent to clients, partners, etc., you should set up a cron responsible for generating and sending the scheduled reports in the background:<\/p>\n<p><code>php app\/console mautic:reports:scheduler<\/code><\/p>\n<p>This Mautic feature is incredible for your customers and employees. It allows them to get an idea of how fluid your Digital Marketing is.<\/p>\n<h2>Mautic Cron to Deliver Scheduled Broadcast Emails<\/h2>\n<p>This task is responsible for sending the scheduled broadcast emails. These emails are not part of a campaign and may have a date \/ time to start sending. The basic cron for this command is:<\/p>\n<p><code>php app\/console mautic:broadcasts:send<\/code><\/p>\n<p><strong>Optional<\/strong>: This command also allows the <strong>&#8211;channel<\/strong> parameter where we can specify the channel we will use and &#8211;id where we specify the id of a specific channel. For now the &#8211;channel parameter only accepts the email value. See the complete command:<\/p>\n<p><code>php app\/console mautic:broadcasts:send --channel=email --id=X<\/code><\/p>\n<p>Where x is the ID of your broadcast e-mail.&nbsp;<\/p>\n<h2>Setting up Large Scale Delivery on Mautic<\/h2>\n<p>The command <strong><em>mautic:broadcasts:send<\/em><\/strong> allows fine tuning for those marketers who send large-scale emails. Here at Powertic we have professionals specialized in solving most of the problems of reputation, monitoring and performance of deliveries and Mautic allows you to make some very interesting adjustments:<\/p>\n<h3>mautic:broadcasts:send &#8211;limit=X<\/h3>\n<p>The <em><strong>&#8211;limit=X<\/strong><\/em> parameter describes how many contacts will be added to the command at each run. By default, Mautic includes 100 contacts which means that with each execution of the mautic <b>command:broadcasts:send <\/b>100 contacts are processed and the next execution gets 100 more contacts and so on.<\/p>\n<h3>mautic:broadcasts:send &#8211;batch=X<\/h3>\n<p>The <strong><em>&#8211;batch=X<\/em><\/strong> parameter informs the batch size of processed emails that will be sent to the Email Delivery Provider (remember that each provider has a limit). Sparkpost, for example, allows <a href=\"https:\/\/www.sparkpost.com\/docs\/tech-resources\/smtp-rest-api-performance\/#sending-via-the-transmission-rest-api\" target=\"_blank\" rel=\"noopener\">1000 emails to be sent to each call in the API<\/a> while SMTP usually allows 10 emails to be sent per batch.<\/p>\n<h3>mautic:broadcasts:send &#8211;min-contact-id=X &#8211;max-contact-id=X<\/h3>\n<p>These parameters allow you to enter a range of contacts so you can run parallel commands. This way you prevent repeat emails from being sent and increase the flow of emails for large submissions. You can have, for example, a cron that sends to contacts with IDs from 1 to 50000 and another parallel command that sends for 500001 to 100000.<\/p>\n<h2>Mautic Cron for sending Marketing Messages<\/h2>\n<p>When a &#8220;Marketing&#8221; campaign email is triggered or a broadcast email (segment email) and a contact has a defined frequency rule or there is a default set in the Mautic Settings, email can be sent to a queue to be processed.<\/p>\n<p>Messages are queued with pending status, so any pending messages that have not reached the maximum number of retries will be processed using this command.<\/p>\n<p><code>php app\/console mautic:messages:send<\/code><\/p>\n<p>It is highly recommended to use this command with the same frequency of sending&nbsp;<b>mautic:broadcasts:send<\/b><\/p>\n<h2>Cron Mautic for Monitoring Bounces on Mautic<\/h2>\n<p>Mautic provides an incredible Bounces Monitoring feature that allows you to mark a lead as rejected after a hard-bounce. This functionality also has a unique cron job.<\/p>\n<p>To configure the task responsible for monitoring bounces use the command:<\/p>\n<p><code>php app\/console mautic:email:fetch<\/code><\/p>\n<blockquote>\n<p>This command performs a scan on your monitored inbox to find return emails. Although very useful it consumes a lot of server resources. I recommend using this command with caution in well-spaced time intervals.<\/p>\n<\/blockquote>\n<h2>Cron Mautic for Importing Contacts in the Background<\/h2>\n<p>Mautic offers a command to perform the import of contacts in the background, excellent for those who need to import a large number of contacts but have encountered problems with timeout.<\/p>\n<p>To configure the task responsible for importing contacts in the background, use the command:<\/p>\n<p><code>php app\/console mautic:import<\/code><\/p>\n<blockquote>\n<p>This command may take some time to execute depending on the number of contacts in the CSV file. In any case, you will receive a notification in the Mautic Dashboard when the import is complete.<\/p>\n<\/blockquote>\n<h2>Mautic Cron for Removing Old Mautic Data<\/h2>\n<p>Mautic update 2.1.0 introduced a new maintenance command feature called <em><strong>maintenance:cleanup<\/strong><\/em>. This command erases data from anonymous leads that are older than 365 days. This eliminates useless data from our database and consequently improves the performance of the tool.<\/p>\n<blockquote>\n<p>This command removes log entries, IP, user notifications, visit history from Anonymous lead pages. Leads that have already been identified in your database will not be affected.<\/p>\n<\/blockquote>\n<p>See the basic command example:<\/p>\n<p><code>php app\/console mautic:maintenance:cleanup<\/code><\/p>\n<p>This command returns an output on the command line that informs which data has been deleted:<br><code>+--------------------+------------------+<br>| Record type&nbsp; &nbsp; &nbsp; &nbsp; | Records affected |<br>+--------------------+------------------+<br>| Audit log entries&nbsp; | 0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>| UTM tag history&nbsp; &nbsp; | 0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>| User notifications | 0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>| Visitor page hits&nbsp; | 0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>| Visitors &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; | 0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>+--------------------+------------------+<\/code><\/p>\n<p>By running the command with the <code>--dry-run<\/code> parameter you can perform a test before actually deleting the data.<\/p>\n<p><em><strong>This is our recommendation when you're not sure what you're doing \ud83d\ude09<\/strong><\/em><\/p>\n<p><code>php app\/console mautic:maintenance:cleanup --dry-run<\/code><\/p>\n<p>The command has another parameter where we can specify the number of days that we want to keep in our database (by default the command uses 365 days)<\/p>\n<p><code>php app\/console mautic:maintenance:cleanup --days-old=90<\/code><\/p>\n<p>In the example above, Mautic will erase all anonymous data older than 90 days<\/p>\n<blockquote>\n<p><strong>Important:<\/strong> If you use this command through a cron task, you must apply the <strong><em>&#8211;no-interaction<\/em><\/strong> parameter, otherwise the command will always request confirmation before execution.<\/p>\n<\/blockquote>\n<p>Here's an example of the command to use in CRON:<\/p>\n<p><code>php app\/console mautic:maintenance:cleanup --days-old=365 --no-interaction<\/code><\/p>\n<p>We already know the main CRON tasks of Mautic, so let's go to the next step: &#8220;<strong><em>divide and conquer<\/em><\/strong>&#8220;!<\/p>\n<h2>Configuring cron of Mautic Integrations (plugins)<\/h2>\n<p>Mautic has four commands to perform the synchronization of all integrations. I recommend using all of these commands every 5 minutes interleaving, ie do not run these commands at the same time. See the commands below:<\/p>\n<p><code>mautic:integration:fetchleads<br>mautic:integration:pushactivity<br>mautic:integration:pushleadactivity<br>mautic:integration:synccontacts<br><\/code><\/p>\n<p>These commands work with the Zoho CRM plugins, Hubspot, etc.<\/p>\n<p>If you use multiple integrations and you are encountering performance issues running all of them at the same time, you can specify which integration should be performed by adding the <strong><em>&#8211;integration<\/em><\/strong> suffix to the command.<\/p>\n<h2>Cron Mautic Hubspot Integration<\/h2>\n<p>See below for cron for integration of Mautic with Hubspot:<br><code>mautic:integration:fetchleads --integration=Hubspot<br>mautic:integration:pushactivity --integration=Hubspot<br><\/code><\/p>\n<h2>Cron Mautic Salesforce Integration<\/h2>\n<p>See below for cron for integrating Mautic with Salesforce:<br><code>mautic:integration:fetchleads --integration=Salesforce<br>mautic:integration:pushactivity --integration=Salesforce<br>mautic:integration:pushleadactivity --integration=Salesforce<br>mautic:integration:synccontacts --integration=Salesforce<\/code><\/p>\n<h2>Cron Mautic Intigration for SugarCRM<\/h2>\n<p>See below for integration of Mautic with Sugarcrm to synchronize all leads:<br><code>mautic:integration:fetchleads --fetch-all --integration=Sugarcrm<br><\/code><\/p>\n<h2>Cron Mautic Integration for Pipedrive CRM<\/h2>\n<p>Here are the commands for integrating Mautic with Pipedrive:<br><code>mautic:integration:pipedrive:fetch<\/code><br><code>mautic:integration:pipedrive:push<\/code><\/p>\n<h2>Cron Mautic Integration for Zoho CRM<\/h2>\n<p>See below for integration of Mautic with ZohoCRM to synchronize all leads:<br><code>mautic:integration:fetchleads --integration=Zoho<br><\/code><\/p>\n<h2>Cron Mautic Integration for Dynamics CRM<\/h2>\n<p>See below for integration of Mautic with <span style=\"background-color: #f6d5d9;\">Dynamics CRM&nbsp;<\/span>to synchronize all leads::<br><code>php app\/console mautic:integration:fetchleads -i Dynamics<br><\/code><\/p>\n<h2>Configuring the Mautic Cron<\/h2>\n<p>Now that we know the order of execution of the cron tasks of Mautic we must create a schedule so that during the period of 1 hour each task is executed completely in order and giving space so that the subsequent one can be executed completely also and thus to avoid run-overs or simultaneous executions.<\/p>\n<blockquote>\n<p>Remember that one task will only run over another if you use the <b>&#8211;force<\/b> parameter. If Mautic attempts to start a task while the other is still running without the <b>&#8211;force<\/b> parameter the new task will wait until the last task has finished executing.<\/p>\n<\/blockquote>\n<p><em><strong>It will all depend on you manually performing the task and seeing how long it takes for it to run, in addition to the number of concurrent tasks from the other Mautic installations within your server.<\/strong><\/em><\/p>\n<p>Depending on the size of your base of leads, the amount of lists and number of campaigns in your installation of mautic, the correct approach can significantly increase Mautic's performance on your server.<\/p>\n<h3>Scenario 1: Execution Schedule in a Large List<\/h3>\n<p>We use this approach in installations with more than 5 thousand leads. With this we unload the application server, the database server and also the service responsible for sending the emails (Amazon SES) since over the space of 1h we perform several executions with low load.<\/p>\n<blockquote>\n<p>Remember that in a perfect scenario you must process your entire base of leads \/ lists \/ campaigns within 1 hour.<\/p>\n<\/blockquote>\n<p>Here is an example of an installation where we have over 6,000 leads where we perform all cron tasks 2 times per hour:<\/p>\n<table>\n<tbody>\n<tr>\n<td><em><strong>Minute<\/strong><\/em><\/td>\n<td><em><strong>Task<\/strong><\/em><\/td>\n<td><em><strong>Average Time<\/strong><\/em><\/td>\n<td><em><strong>Order<\/strong><\/em><\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>IP Lockup Download<\/td>\n<td>&nbsp;&#8211;<\/td>\n<td>&nbsp;&#8211;<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>Segment Update<\/td>\n<td>3 min<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>5<\/td>\n<td>Campaign Update<\/td>\n<td>3 min<\/td>\n<td>2<\/td>\n<\/tr>\n<tr>\n<td>10<\/td>\n<td>Campaign Execution<\/td>\n<td>4&nbsp;min<\/td>\n<td>3<\/td>\n<\/tr>\n<tr>\n<td>15<\/td>\n<td>Email send<\/td>\n<td>10&nbsp;min<\/td>\n<td>4<\/td>\n<\/tr>\n<tr>\n<td>25<\/td>\n<td>Monitored Email Read<\/td>\n<td>5 min<\/td>\n<td>5<\/td>\n<\/tr>\n<tr>\n<td>30<\/td>\n<td>Segment Update<\/td>\n<td>3 min<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>35<\/td>\n<td>Campaign Update<\/td>\n<td>3 min<\/td>\n<td>2<\/td>\n<\/tr>\n<tr>\n<td>40<\/td>\n<td>Campaign Execution<\/td>\n<td>4 min<\/td>\n<td>3<\/td>\n<\/tr>\n<tr>\n<td>45<\/td>\n<td>Email Send<\/td>\n<td>10 min<\/td>\n<td>4<\/td>\n<\/tr>\n<tr>\n<td>50<\/td>\n<td>Monitored Email Read<\/td>\n<td>5 min<\/td>\n<td>5<\/td>\n<\/tr>\n<tr>\n<td>55<\/td>\n<td>IP Lockup Download<\/td>\n<td>&#8211;<\/td>\n<td>&#8211;<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>So we can distribute the execution of the CRON tasks within one hour without overloading the server and making sure that the following tasks are ready to run without running over.<\/p>\n<p>Crontab example:<\/p>\n<h3>Scenario 2: Execution Schedule on a Small List<\/h3>\n<p>We use this approach for installations with fewer than 5,000 leads. Thus we can have a less spaced-out execution since they take less time to complete.<\/p>\n<blockquote>\n<p>The general rule for performing cron tasks well is to prevent them from running at the same time.<\/p>\n<\/blockquote>\n<p>In smaller lists we use the following schedule:<\/p>\n<table>\n<tbody>\n<tr>\n<td><em><strong>Minute<\/strong><\/em><\/td>\n<td><em><strong>Task<\/strong><\/em><\/td>\n<td><em><strong>Average Time<\/strong><\/em><\/td>\n<td><em><strong>Order<\/strong><\/em><\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>IP Lockup Download<\/td>\n<td>&nbsp;&#8211;<\/td>\n<td>&nbsp;&#8211;<\/td>\n<\/tr>\n<tr>\n<td>1,10,20,30,40,50<\/td>\n<td>Segment Update<\/td>\n<td>1&nbsp;min<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>2,12,22,32,42,52<\/td>\n<td>Campaigns Update<\/td>\n<td>2&nbsp;min<\/td>\n<td>2<\/td>\n<\/tr>\n<tr>\n<td>4,14,24,34,44,54<\/td>\n<td>Campaigns Execution<\/td>\n<td>2 min<\/td>\n<td>3<\/td>\n<\/tr>\n<tr>\n<td>7,17,27,37,47,57<\/td>\n<td>Email Send<\/td>\n<td>3&nbsp;min<\/td>\n<td>4<\/td>\n<\/tr>\n<tr>\n<td>9,19,29,39,49,59<\/td>\n<td>Monitored Email Read<\/td>\n<td>2 min<\/td>\n<td>5<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>This one gets a bit complicated, but let's go:<\/p>\n<p><strong>Mautic recommends that you do not run cron jobs at the same time<\/strong>. So we create &#8220;spaces&#8221; of time for a task to be executed and then we run the next task. As each task takes an average of 2 minutes to execute and we have 5 different tasks each task will be executed every 10 minutes.<\/p>\n<h2>Takeaways<\/h2>\n<p>Weekly we run &#8220;on hand&#8221; every cron task of each installation we manage to see the log of the executions. Often Mautic &#8220;hangs&#8221; an execution at a certain point and the fix is to include the &#8211;force flag to the command like this:<\/p>\n<p><code>mautic:segments:update --force<\/code><br><code>mautic:campaigns:update --force<\/code><br><code>mautic:campaigns:trigger --force<\/code><\/p>\n<p>Leave us your comments, questions or suggestions. Soon I will write more articles on configuration and management of the server.<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>A complete guide with all the Mautic cron job setups you need so your Mautic runs perfectly in your VPS installation. Setting up the right&hellip;<\/p>","protected":false},"author":16,"featured_media":43389,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2973],"tags":[],"class_list":["post-23561","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mautic-4"],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/powertic.com\/en\/wp-json\/wp\/v2\/posts\/23561","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/powertic.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/powertic.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/powertic.com\/en\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/powertic.com\/en\/wp-json\/wp\/v2\/comments?post=23561"}],"version-history":[{"count":0,"href":"https:\/\/powertic.com\/en\/wp-json\/wp\/v2\/posts\/23561\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/powertic.com\/en\/wp-json\/wp\/v2\/media\/43389"}],"wp:attachment":[{"href":"https:\/\/powertic.com\/en\/wp-json\/wp\/v2\/media?parent=23561"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/powertic.com\/en\/wp-json\/wp\/v2\/categories?post=23561"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/powertic.com\/en\/wp-json\/wp\/v2\/tags?post=23561"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}