{"id":42374,"date":"2022-01-31T12:16:42","date_gmt":"2022-01-31T12:16:42","guid":{"rendered":"https:\/\/www.applivery.com\/docs\/api\/spec\/"},"modified":"2024-05-24T16:55:43","modified_gmt":"2024-05-24T16:55:43","password":"","slug":"spec","status":"publish","type":"docs","link":"https:\/\/www.applivery.com\/es\/docs\/api\/spec\/","title":{"rendered":"Open Spec"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"42374\" class=\"elementor elementor-42374\" data-elementor-post-type=\"docs\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b52812 e-con-full e-flex e-con e-parent\" data-id=\"2b52812\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9f3fb11 elementor-widget elementor-widget-text-editor\" data-id=\"9f3fb11\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Welcome to the Applivery API that will help you to interact with Applivery Platform from your systems at the level of your Apps (projects). It provides a small set of methods that will allow you to get information related to your Apps but also management of builds and App Store settings.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9b4c965 elementor-widget elementor-widget-tp-info-box\" data-id=\"9b4c965\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"tp-info-box.default\">\n\t\t\t\t\t<div id=\"info_box6a05744fad30e\" class=\"pt_plus_info_box  info_box6a05744fad30e info-box-style_1     \"  data-id=\"info_box6a05744fad30e\" ><div class=\"post-inner-loop \"><div class=\"info-box-inner content_hover_effect \"><div class=\"info-box-bg-box  service-border-box \"><div class=\"service-media text-left  \"><div class=\"m-r-16  service-img-border\"  style=\"border-color: #252525;\"> <div class=\"service-icon-wrap\"><i class=\" fa fa-question-circle service-icon  \"><\/i><\/div> <\/div><div class=\"service-content \"><a  ><div class=\"service-title \"> Nota <\/div><\/a><div class=\"service-border\"> <\/div><div class=\"service-desc\"> <p>Organizations API docs are managed separately from this website and are fully available <a href=\"https:\/\/www.applivery.com\/es\/docs\/api\/main\/\">here<\/a>.<\/p>\n <\/div><\/div><\/div><div class=\"infobox-overlay-color\"><\/div><\/div><\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ce8dd59 elementor-widget elementor-widget-heading\" data-id=\"ce8dd59\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Principales conceptos<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cb3d993 elementor-widget elementor-widget-text-editor\" data-id=\"cb3d993\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Now we are going to explain how to interact with Applivery API, starting from authentication and discovering all the things you\u2019ll be able to do.<\/p>\n<ul>\n<li>Applivery provides a simple but powerful <strong>JSON based REST API<\/strong> protected with a token-based Authentication.<\/li>\n<li><strong>API Base Domain:<\/strong> The base domain for all requests is <code>https:\/\/api.applivery.io<\/code><\/li>\n<li><strong>Authentication:<\/strong> The majority of the endpoints require authentication.\n<ul>\n<li><strong>Apps API:<\/strong> Each Applivery App has its own <strong>App Token<\/strong> that must be included in the request Headers.&nbsp; Read more about <a href=\"#\">how to get your App Token<\/a>.<\/li>\n<li><strong>Organizations API:<\/strong> In the case of the Organizations API, you must use a <strong>Service Account<\/strong>. Read more about <a href=\"#\">how to configure your Service Accounts<\/a>.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Headers:<\/strong> Applivery requires two single <em>HTTP Headers<\/em> that should be included in all the requests:<\/li>\n<\/ul>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-99aaed3 elementor-widget elementor-widget-mdp-coder-elementor\" data-id=\"99aaed3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"mdp-coder-elementor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <!-- Start Coder for Elementor WordPress Plugin -->\n        <div\n            id=\"mdp-coder-99aaed3\"\n            class=\"mdp-coder-elementor-box\"\n            data-theme=\"mdp-theme-default\"\n            data-dark-theme=\"mdp-theme-default\"\n        >\n            \n                <pre class=\"language-php line-numbers copy-to-clipboard\"data-previewers=\"\"><code>Content-Type: application\/json\nAuthorization: bearer &lt; Your_App_Token &gt;<\/code><\/pre>\n                    <\/div>\n                <script>\n            \"use strict\";\n\n            \/** Handler when the DOM is fully loaded. *\/\n            let callback_99aaed3 = function() {\n\n                \/** Set theme for coder widget. *\/\n                function setTheme() {\n\n                    \/** Foreach Code Widget. *\/\n                    let coderBoxes = document.querySelectorAll( '.mdp-coder-elementor-box' );\n\n                    for ( let coderBox of coderBoxes ) {\n\n                        let lightTheme = coderBox.dataset.theme;\n                        let darkTheme = coderBox.dataset.darkTheme;\n\n                        coderBox.className = '';\n                        if ( window.matchMedia && window.matchMedia( '(prefers-color-scheme: dark)' ).matches ) {\n\n                            coderBox.className = 'mdp-coder-elementor-box ' + darkTheme;\n\n                        } else {\n\n                            coderBox.className = 'mdp-coder-elementor-box ' + lightTheme;\n\n                        }\n\n                    }\n\n                }\n                setTheme();\n\n\n                \/** Watch for changes color-scheme. *\/\n                window.matchMedia(\"(prefers-color-scheme: dark)\").addListener( function() {\n                    setTheme();\n                } );\n\n                \n                if ( typeof Prism !== 'undefined' ) {\n\n                    Prism.plugins.autoloader.languages_path = 'https:\/\/www.applivery.com\/wp-content\/plugins\/coder-elementor\/js\/prism\/components\/';\n                    Prism.highlightAll();\n                    Prism.fileHighlight();\n\n                }\n\n                \n            };\n\n            if (\n                document.readyState === \"complete\" ||\n                ( document.readyState !== \"loading\" && !document.documentElement.doScroll )\n            ) {\n                callback_99aaed3();\n            } else {\n                document.addEventListener( \"DOMContentLoaded\", callback_99aaed3 );\n            }\n\n        <\/script>\n                <!-- End Coder for Elementor WordPress Plugin -->\n\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9bc1c99 elementor-widget elementor-widget-heading\" data-id=\"9bc1c99\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Versioning<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b8dac57 elementor-widget elementor-widget-text-editor\" data-id=\"b8dac57\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>When we make backwards-incompatible changes to the API, we release new, API versions. The current version is <code>v1<\/code>. Read our API changelog and to learn more about backwards compatibility.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Welcome to the Applivery API that will help you to interact with Applivery Platform from your systems at the level of your Apps (projects). It provides a small ..<\/p>\n","protected":false},"author":1,"featured_media":32392,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":{"content-type":"","inline_featured_image":false,"footnotes":""},"product":[],"doc_category":[67],"doc_tag":[],"class_list":["post-42374","docs","type-docs","status-publish","format-standard","has-post-thumbnail","hentry","doc_category-api"],"aioseo_notices":[],"year_month":"2026-05","word_count":284,"total_views":"1073","reactions":{"happy":"1","normal":"1","sad":"1"},"author_info":{"name":"applivery","author_nicename":"applivery","author_url":"https:\/\/www.applivery.com\/es\/blog\/author\/applivery\/"},"doc_category_info":[{"term_name":"API Reference","term_url":"https:\/\/www.applivery.com\/docs\/api\/"}],"doc_tag_info":[],"knowledge_base_info":[],"knowledge_base_slug":[],"_links":{"self":[{"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/docs\/42374","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/comments?post=42374"}],"version-history":[{"count":1,"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/docs\/42374\/revisions"}],"predecessor-version":[{"id":42375,"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/docs\/42374\/revisions\/42375"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/media\/32392"}],"wp:attachment":[{"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/media?parent=42374"}],"wp:term":[{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/product?post=42374"},{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/doc_category?post=42374"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.applivery.com\/es\/wp-json\/wp\/v2\/doc_tag?post=42374"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}