{"id":61234,"date":"2024-02-13T07:00:41","date_gmt":"2024-02-13T12:00:41","guid":{"rendered":"https:\/\/memberpress.com\/docs\/overview-of-using-the-developer-tools\/"},"modified":"2025-10-24T10:38:55","modified_gmt":"2025-10-24T14:38:55","slug":"overview-of-using-the-developer-tools","status":"publish","type":"ht_kb","link":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/","title":{"rendered":"Vis\u00e3o geral do uso do MemberPress Developer Tools Addon"},"content":{"rendered":"\n<p class=\"wp-block-ht-blocks-messages wp-block-hb-message wp-block-hb-message--withicon is-style-info\"><strong>Note<\/strong>: This add-on is available to MemberPress Scale plan members. You can upgrade to the Scale plan if you're subscribed to another plan. To upgrade, click the\u00a0<strong>Change Plan<\/strong>\u00a0link on your\u00a0<strong><a href=\"https:\/\/memberpress.com\/account\/subscriptions\/\">account page<\/a><\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-ht-blocks-messages wp-block-hb-message wp-block-hb-message--withicon is-style-alert\"><strong>Note<\/strong>: If you're not a developer, you might find our <a href=\"https:\/\/memberpress.com\/docs\/official-memberpress-zapier-integration\/\" target=\"_blank\" rel=\"noopener\">Zapier integration<\/a>, <a href=\"https:\/\/wpfusion.com\/\" target=\"_blank\" rel=\"noopener\">WP Fusion<\/a>, or the <a href=\"https:\/\/automatorplugin.com\/integration\/memberpress\/\" target=\"_blank\" rel=\"noopener\">Uncanny Automator<\/a> easier to use.<\/p>\n\n\n<p><strong><a href=\"https:\/\/memberpress.com\/addons\/developer-tools\/\">MemberPress Developer Tools Add-on<\/a> <\/strong>extends MemberPress to include a <strong>full REST API and full Webhook event capability<\/strong>.<\/p>\n\n\n<p class=\"wp-block-ht-blocks-messages wp-block-hb-message wp-block-hb-message--withicon is-style-alert\"><strong>Note<\/strong>: Please note that starting from version 1.2.14, we have removed the password argument for member create and update since it presents a security risk.<\/p>\n\n\n<p>If the\u00a0documentation on this page seems light for developer tools, that's because all the documentation for the webhook events and REST API URLs can be found in the plugin's interface. The interface will actually give you dynamic results to work from and the ability to test webhooks directly from your site. You may also refer to the following additional docs for more info:<\/p>\n<ul>\n<li><a href=\"https:\/\/memberpress.com\/docs\/developer-tools-actions\/\" target=\"_blank\" rel=\"noopener\">Developer Tools Actions<\/a><\/li>\n<li><a href=\"https:\/\/memberpress.com\/docs\/developer-tools-event-triggers\/\" target=\"_blank\" rel=\"noopener\">Developer Tools Event Triggers<\/a><\/li>\n<li><a href=\"https:\/\/memberpress.com\/docs\/how-to-add-usermeta-via-rest-api-developer-tools\/\" target=\"_blank\" rel=\"noopener\">How to Add Usermeta via REST API (Developer Tools)<\/a><\/li>\n<\/ul>\n<h2>Getting started couldn't be easier\u2026 here's how<\/h2>\n<ol>\n<li>Ensure your MemberPress activation key is for the <a href=\"https:\/\/memberpress.com\/plans\/memberpress\/\">MemberPress Scale edition<\/a>.<\/li>\n<li>To install the MemberPress Developer Tools Add-on, go to MemberPress > Add-ons page, and click on the \u201cInstall Add-on\u201d button.<img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-EkW3v98JEI.png\" \/><\/li>\n<li>To use the MemberPress REST API, you'll need to run WordPress 4.7+<\/li>\n<li>Once the Developer Tools add-on is installed and activated, you should see a new item on your MemberPress menu:<img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-PEYSVTFRqC.png\" \/><\/li>\n<li>From the Developer Menu, you'll now be able to setup webhooks, view dynamic documentation on and test webhook events and view dynamic documentation on all MemberPress REST API URLs:<\/li>\n<\/ol>\n<p><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/09\/mpdt_webhooks.png\" \/><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/09\/mpdt_events.png\" \/><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/09\/mpdt_api.png\" \/><\/p>\n<h2 id=\"sample-php-curl-code\">Sample PHP cURL Code<\/h2>\n<p>This example adds a Member, assigns them to a Membership (via a transaction), and triggers a welcome email in the process:<\/p>\n<pre><?php\n$url = 'http:\/\/testsite.w6.wpsandbox.pro\/wp-json\/mp\/v1\/members';\n\n$ch = curl_init($url);\n\n$data_string = json_encode(\n  [\n    'email'               => 'testingboy897@test.com',\n    'username'            => 'testingboy897@test.com',\n    'first_name'          => 'test',\n    'last_name'           => 'test_last_name',\n    'send_welcome_email'  => true, \/\/ Trigger a welcome email - this only works if adding a transaction (below)\n    'transaction'         => [\n      'membership'  => 376, \/\/ ID of the Membership\n      'amount'      => '0.00',\n      'total'       => '0.00',\n      'tax_amount'  => '0.00',\n      'tax_rate'    => '0.000',\n      'trans_num'   => 'mp-txn-' . uniqid(),\n      'status'      => 'complete',\n      'gateway'     => 'free',\n      'created_at'  => gmdate( 'c' ),\n      'expires_at'  => '0000-00-00 00:00:00'\n    ]\n  ]\n);\n\ncurl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );\ncurl_setopt( $ch, CURLOPT_CUSTOMREQUEST, \"POST\" );\ncurl_setopt( $ch, CURLOPT_POSTFIELDS, $data_string );\n\n$header = array();\n$header[] = 'MEMBERPRESS-API-KEY: MgCUGSO5Qg'; \/\/ Your API KEY from MemberPress Developer Tools Here\n$header[] = 'Content-Type: application\/json';\n$header[] = 'Content-Length: ' . strlen($data_string);\ncurl_setopt($ch, CURLOPT_HTTPHEADER, $header);\n\n$response = curl_exec($ch);\n\nif(curl_errno($ch)){\n  throw new Exception(curl_error($ch));\n}\n\necho $response;\n\ncurl_close($ch);\n<\/pre>\n<h2>Webhook Key<\/h2>\n<p>Since MemberPress Developer Tools Add-on 1.2.5, we introduced a Webhook Key setting that can be found in the MemberPress menu > Developers > Webhook tab.<\/p>\n<p><img decoding=\"async\" style=\"width: 1125.99px;\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-OssV4IUy59.png\" \/><\/p>\n<p>You can use the key to authenticate webhook POST requests. It is generated automatically by the MemberPress add-on, but if you feel your key has been compromised, you can regenerate a new webhook key\u00a0at any time.<\/p>\n<p>To validate the webhook request, fetch HTTP headers and look for memberpress-webhook-key. Here's an example of an HTTP header with memberpress-webhook-key received\u00a0after creating a new Webhook URL in the MemberPress menu > Developers > Webhook tab and listening to signup events:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-pVmrUvQYde.png\" \/><\/p>\n<h2 id=\"troubleshooting-authentication\">Troubleshooting Basic Authentication<\/h2>\n<p>The preferred method for authentication is via the API Key provided by MemberPress Developer Tools. However, we know that many of you also use the less secure \u2013 Basic Authentication method \u2013 to connect to the WP-API. However, this can present a few challenges, which the information below can assist you with.<\/p>\n<p>If you're struggling to get Basic Authentication to work, be sure you've<br \/><a href=\"https:\/\/wordpress.org\/plugins\/application-passwords\/\">installed the Application Passwords plugin<\/a> and followed its instructions.<\/p>\n<p>A typical Basic Auth request be as follows:<\/p>\n<p>Header Name:<br \/><strong style=\"background-color: initial;\">Authorization<\/strong><br \/>Header Value:\u00a0<br \/><strong style=\"background-color: initial;\">Basic base64_encode( wp_admin_user_login_here:application_passwords_password_here )<\/strong><\/p>\n<p>Your user should have the<br \/><strong>remove_users<\/strong>\u00a0capability, or MemberPress Developer Tools will return a 401 response.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-Cxr9sVWTBP.png\" \/><\/p>\n<p>If you're still unable to authenticate, then your hosting server may have some configuration issues.<br \/><a href=\"https:\/\/github.com\/WP-API\/Basic-Auth\/issues\/21\">Read more about the most common cause here<\/a>. The Application Passwords plugin must have the PHP_AUTH_USER and PHP_AUTH_PW variables set. If they're not set, Application Passwords will fail to authenticate the user, and you'll need to work with your webhost to correct it. Typically it requires adding something like the following to the .htaccess file:<\/p>\n<pre>SetEnvIf Authorization \"(.*)\" HTTP_AUTHORIZATION=$1\n<\/pre>\n<p>If all else fails, it's best to just use the API Key in the\u00a0<br \/><strong>MEMBERPRESS-API-KEY<\/strong>\u00a0HTTP request header instead. Below is some sample code with the API Key and PHP cURL:<\/p>\n<pre><?php\n$url = 'http:\/\/testsite.com\/wp-json\/mp\/v1\/me';\n$ch = curl_init( $url );\ncurl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );\n$headers = [ 'MEMBERPRESS-API-KEY: MdCUPSO5Qr', 'Content-Type: application\/json' ];\ncurl_setopt( $ch, CURLOPT_HTTPHEADER, $headers );\n$response = curl_exec( $ch );\nif( curl_errno( $ch ) ) { throw new Exception( curl_error( $ch ) ); }\ncurl_close($ch);\necho $response;\n<\/pre>\n<h2 id=\"troubleshooting-webhooks\">Troubleshooting Webhooks<\/h2>\n<p>If your test webhooks are working, but your live tests are not firing, then WP Cron is most likely disabled or is not working as it should. MemberPress Developer Tools rely on WP Cron to send out the webhooks.<\/p>\n<p>In this case, the easiest way to verify is to check the wp_mepr_jobs table in your database to see if the webhook jobs are stuck there with a status of \u201cpending\u201d.<\/p>\n<p>When possible, we recommend disabling page load based WP Cron and instead triggering it from a server-side cron that runs every minute. SiteGround has a great article on<br \/><a href=\"https:\/\/www.siteground.co.uk\/tutorials\/wordpress\/real-cron-job\/\" target=\"_blank\" rel=\"noopener\">doing this here<\/a>. And WordPress.org has some <a href=\"https:\/\/developer.wordpress.org\/plugins\/cron\/hooking-wp-cron-into-the-system-task-scheduler\/\">additional information here<\/a>. Unfortunately, we can't assist you with this, and your webhost will need to help you set it up.<\/p>\n<p>If you're unable to get WP Cron firing correctly, even after enabling a server-side cron, then you may (as a last resort) need to issue the following query:<\/p>\n<pre>UPDATE wp_options SET option_value = '' WHERE option_name = 'cron';\n<\/pre>","protected":false},"excerpt":{"rendered":"<p>MemberPress Developer Tools Add-on extends MemberPress to include a full REST API and full Webhook event capability. If the\u00a0documentation on this page seems light for developer tools, that\u2019s because all the documentation for the webhook events and REST API URLs can be found in the plugin\u2019s interface. The interface will actually give you dynamic results [\u2026]<\/p>\n","protected":false},"author":62252,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"_strive_editorial_status":"not-started","_strive_copy_of":0,"inline_featured_image":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","_FSMCFIC_featured_image_caption":"","_FSMCFIC_featured_image_nocaption":"","_FSMCFIC_featured_image_hide":"","_strive_checklists":"\"\"","_strive_active_checklist":"62291e2bb2422","footnotes":""},"ht-kb-category":[1316],"ht-kb-tag":[],"class_list":{"0":"post-61234","1":"ht_kb","2":"type-ht_kb","3":"status-publish","4":"format-standard","6":"ht_kb_category-developer-tools","7":"entry","8":"has-post-thumbnail"},"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.5.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"Note: This add-on is available to MemberPress Scale plan members. You can upgrade to the Scale plan if you&#039;re subscribed to another plan. To upgrade, click the Change Plan link on your account page. Note: If you&#039;re not a developer, you might find our Zapier integration, WP Fusion, or the Uncanny Automator easier to use. MemberPress Developer Tools\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Nikola M\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.5.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"pt_BR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"MemberPress\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Overview of Using the MemberPress Developer Tools Addon | MemberPress\" \/>\n\t\t<meta property=\"og:description\" content=\"Note: This add-on is available to MemberPress Scale plan members. You can upgrade to the Scale plan if you&#039;re subscribed to another plan. To upgrade, click the Change Plan link on your account page. Note: If you&#039;re not a developer, you might find our Zapier integration, WP Fusion, or the Uncanny Automator easier to use. MemberPress Developer Tools\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1650\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1275\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-02-13T12:00:41+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-10-24T14:38:55+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/memberpress\/\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@memberpress\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Overview of Using the MemberPress Developer Tools Addon | MemberPress\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Note: This add-on is available to MemberPress Scale plan members. You can upgrade to the Scale plan if you&#039;re subscribed to another plan. To upgrade, click the Change Plan link on your account page. Note: If you&#039;re not a developer, you might find our Zapier integration, WP Fusion, or the Uncanny Automator easier to use. MemberPress Developer Tools\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#article\",\"name\":\"Overview of Using the MemberPress Developer Tools Addon | MemberPress\",\"headline\":\"Overview of Using the MemberPress Developer Tools Addon\",\"author\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/file-EkW3v98JEI.png\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#articleImage\",\"width\":1542,\"height\":879},\"datePublished\":\"2024-02-13T07:00:41-05:00\",\"dateModified\":\"2025-10-24T10:38:55-04:00\",\"inLanguage\":\"pt-BR\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#webpage\"},\"articleSection\":\"Developer Tools\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/memberpress.com\\\/pt\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/advanced-topics\\\/#listItem\",\"name\":\"Advanced Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/advanced-topics\\\/#listItem\",\"position\":2,\"name\":\"Advanced Topics\",\"item\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/advanced-topics\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/developer-tools\\\/#listItem\",\"name\":\"Developer Tools\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/developer-tools\\\/#listItem\",\"position\":3,\"name\":\"Developer Tools\",\"item\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/developer-tools\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#listItem\",\"name\":\"Overview of Using the MemberPress Developer Tools Addon\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/advanced-topics\\\/#listItem\",\"name\":\"Advanced Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#listItem\",\"position\":4,\"name\":\"Overview of Using the MemberPress Developer Tools Addon\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/developer-tools\\\/#listItem\",\"name\":\"Developer Tools\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#organization\",\"name\":\"MemberPress\",\"description\":\"The All-In-One WordPress Membership Plugin\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/mp-icon-RGB_Icon-01.jpg\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#organizationLogo\",\"width\":1650,\"height\":1275,\"caption\":\"memberpress logo icon\"},\"image\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/memberpress\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/memberpressplugin\\\/\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/MemberPressPlugin\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/memberpress\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/nikolacaseproof-com\\\/\",\"name\":\"Nikola M\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/litespeed\\\/avatar\\\/1edf820c48f9c430f380efe81887b154.jpg?ver=1775141118\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#webpage\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/\",\"name\":\"Overview of Using the MemberPress Developer Tools Addon | MemberPress\",\"description\":\"Note: This add-on is available to MemberPress Scale plan members. You can upgrade to the Scale plan if you're subscribed to another plan. To upgrade, click the Change Plan link on your account page. Note: If you're not a developer, you might find our Zapier integration, WP Fusion, or the Uncanny Automator easier to use. MemberPress Developer Tools\",\"inLanguage\":\"pt-BR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/overview-of-using-the-developer-tools\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"datePublished\":\"2024-02-13T07:00:41-05:00\",\"dateModified\":\"2025-10-24T10:38:55-04:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#website\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/\",\"name\":\"MemberPress\",\"description\":\"The All-In-One WordPress Membership Plugin\",\"inLanguage\":\"pt-BR\",\"publisher\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Overview of Using the MemberPress Developer Tools Addon | MemberPress<\/title>\n\n","aioseo_head_json":{"title":"Vis\u00e3o geral do uso do complemento MemberPress Developer Tools | MemberPress","description":"Observa\u00e7\u00e3o: Esse complemento est\u00e1 dispon\u00edvel para membros do plano Scale do MemberPress. Voc\u00ea pode fazer upgrade para o plano Scale se estiver inscrito em outro plano. Para fazer upgrade, clique no link Change Plan (Alterar plano) na p\u00e1gina de sua conta. Observa\u00e7\u00e3o: se voc\u00ea n\u00e3o for um desenvolvedor, talvez ache mais f\u00e1cil usar nossa integra\u00e7\u00e3o com o Zapier, o WP Fusion ou o Uncanny Automator. Ferramentas de desenvolvedor do MemberPress","canonical_url":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#article","name":"Overview of Using the MemberPress Developer Tools Addon | MemberPress","headline":"Overview of Using the MemberPress Developer Tools Addon","author":{"@id":"https:\/\/memberpress.com\/pt\/blog\/author\/nikolacaseproof-com\/#author"},"publisher":{"@id":"https:\/\/memberpress.com\/pt\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-EkW3v98JEI.png","@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#articleImage","width":1542,"height":879},"datePublished":"2024-02-13T07:00:41-05:00","dateModified":"2025-10-24T10:38:55-04:00","inLanguage":"pt-BR","mainEntityOfPage":{"@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#webpage"},"isPartOf":{"@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#webpage"},"articleSection":"Developer Tools"},{"@type":"BreadcrumbList","@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt#listItem","position":1,"name":"Home","item":"https:\/\/memberpress.com\/pt","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/advanced-topics\/#listItem","name":"Advanced Topics"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/advanced-topics\/#listItem","position":2,"name":"Advanced Topics","item":"https:\/\/memberpress.com\/pt\/doc-categories\/advanced-topics\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/developer-tools\/#listItem","name":"Developer Tools"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/developer-tools\/#listItem","position":3,"name":"Developer Tools","item":"https:\/\/memberpress.com\/pt\/doc-categories\/developer-tools\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#listItem","name":"Overview of Using the MemberPress Developer Tools Addon"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/advanced-topics\/#listItem","name":"Advanced Topics"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#listItem","position":4,"name":"Overview of Using the MemberPress Developer Tools Addon","previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/developer-tools\/#listItem","name":"Developer Tools"}}]},{"@type":"Organization","@id":"https:\/\/memberpress.com\/pt\/#organization","name":"MemberPress","description":"The All-In-One WordPress Membership Plugin","url":"https:\/\/memberpress.com\/pt\/","logo":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#organizationLogo","width":1650,"height":1275,"caption":"memberpress logo icon"},"image":{"@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#organizationLogo"},"sameAs":["https:\/\/www.instagram.com\/memberpress\/","https:\/\/www.pinterest.com\/memberpressplugin\/","https:\/\/www.youtube.com\/c\/MemberPressPlugin","https:\/\/www.linkedin.com\/company\/memberpress\/"]},{"@type":"Person","@id":"https:\/\/memberpress.com\/pt\/blog\/author\/nikolacaseproof-com\/#author","url":"https:\/\/memberpress.com\/pt\/blog\/author\/nikolacaseproof-com\/","name":"Nikola M","image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/litespeed\/avatar\/1edf820c48f9c430f380efe81887b154.jpg?ver=1775141118"}},{"@type":"WebPage","@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#webpage","url":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/","name":"Overview of Using the MemberPress Developer Tools Addon | MemberPress","description":"Note: This add-on is available to MemberPress Scale plan members. You can upgrade to the Scale plan if you're subscribed to another plan. To upgrade, click the Change Plan link on your account page. Note: If you're not a developer, you might find our Zapier integration, WP Fusion, or the Uncanny Automator easier to use. MemberPress Developer Tools","inLanguage":"pt-BR","isPartOf":{"@id":"https:\/\/memberpress.com\/pt\/#website"},"breadcrumb":{"@id":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/#breadcrumblist"},"author":{"@id":"https:\/\/memberpress.com\/pt\/blog\/author\/nikolacaseproof-com\/#author"},"creator":{"@id":"https:\/\/memberpress.com\/pt\/blog\/author\/nikolacaseproof-com\/#author"},"datePublished":"2024-02-13T07:00:41-05:00","dateModified":"2025-10-24T10:38:55-04:00"},{"@type":"WebSite","@id":"https:\/\/memberpress.com\/pt\/#website","url":"https:\/\/memberpress.com\/pt\/","name":"MemberPress","description":"The All-In-One WordPress Membership Plugin","inLanguage":"pt-BR","publisher":{"@id":"https:\/\/memberpress.com\/pt\/#organization"}}]},"og:locale":"pt_BR","og:site_name":"MemberPress","og:type":"article","og:title":"Overview of Using the MemberPress Developer Tools Addon | MemberPress","og:description":"Note: This add-on is available to MemberPress Scale plan members. You can upgrade to the Scale plan if you're subscribed to another plan. To upgrade, click the Change Plan link on your account page. Note: If you're not a developer, you might find our Zapier integration, WP Fusion, or the Uncanny Automator easier to use. MemberPress Developer Tools","og:url":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/","og:image":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","og:image:secure_url":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","og:image:width":1650,"og:image:height":1275,"article:published_time":"2024-02-13T12:00:41+00:00","article:modified_time":"2025-10-24T14:38:55+00:00","article:publisher":"https:\/\/www.facebook.com\/memberpress\/","twitter:card":"summary_large_image","twitter:site":"@memberpress","twitter:title":"Overview of Using the MemberPress Developer Tools Addon | MemberPress","twitter:description":"Note: This add-on is available to MemberPress Scale plan members. You can upgrade to the Scale plan if you're subscribed to another plan. To upgrade, click the Change Plan link on your account page. Note: If you're not a developer, you might find our Zapier integration, WP Fusion, or the Uncanny Automator easier to use. MemberPress Developer Tools","twitter:image":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg"},"aioseo_meta_data":{"post_id":"61234","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":"2025-10-24 14:51:14","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":"0","open_ai":"{\"title\":{\"suggestions\":[],\"usage\":0},\"description\":{\"suggestions\":[],\"usage\":0}}","ai":{"faqs":[],"keyPoints":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2024-02-13 12:00:41","updated":"2026-03-03 14:55:07"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/pt\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/pt\/doc-categories\/advanced-topics\/\" title=\"Advanced Topics\">Advanced Topics<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/pt\/doc-categories\/developer-tools\/\" title=\"Developer Tools\">Developer Tools<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tOverview of Using the MemberPress Developer Tools Addon\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/memberpress.com\/pt"},{"label":"Advanced Topics","link":"https:\/\/memberpress.com\/pt\/doc-categories\/advanced-topics\/"},{"label":"Developer Tools","link":"https:\/\/memberpress.com\/pt\/doc-categories\/developer-tools\/"},{"label":"Overview of Using the MemberPress Developer Tools Addon","link":"https:\/\/memberpress.com\/pt\/docs\/overview-of-using-the-developer-tools\/"}],"_links":{"self":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb\/61234","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/users\/62252"}],"replies":[{"embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/comments?post=61234"}],"version-history":[{"count":3,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb\/61234\/revisions"}],"predecessor-version":[{"id":75615,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb\/61234\/revisions\/75615"}],"wp:attachment":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/media?parent=61234"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb-category?post=61234"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb-tag?post=61234"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}