{"id":16822,"date":"2026-01-15T17:31:26","date_gmt":"2026-01-15T17:31:26","guid":{"rendered":"https:\/\/www.gsma.com\/solutions-and-impact\/industry-services\/?post_type=gsma_theme_resources&#038;p=12778"},"modified":"2026-01-30T15:34:25","modified_gmt":"2026-01-30T15:34:25","slug":"network-settings-exchange-product-overview-and-demonstration","status":"publish","type":"gsma_theme_resources","link":"https:\/\/www.gsmaservices.com\/zh-hans\/gsma_resources\/network-settings-exchange-product-overview-and-demonstration\/","title":{"rendered":"Network Settings Exchange product overview and demonstration"},"content":{"rendered":"\n<p>Catch up below to explore how to unlock the full potential of GSMA Network Settings Exchange.<\/p>\n\n\n\n<p>Learn more from Shamit Bhat, Product Director. Industry Services about the key features of the service. Then see our NSX service in action and explore its new features with Rufia Francis, Program Manager, Venus Geo, in a live demonstration.<\/p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https:\/\/glc2.workcast.com\/clusterSVCFS1\/NAS\/PseudoMedia\/13980\/7754058723099350\/13980_gljibrisd2_184098_01_20250604140002711.mp4\"><\/video><\/figure>\n\n\n\n<p>If you are interested in finding out more about NSX, please complete the form below and we will be in touch with you shortly.<\/p>\n\n\n<style>.wForm form{text-align: left;}<\/style><!-- FORM: HEAD SECTION -->\n    <meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n    <meta name=\"referrer\" content=\"no-referrer-when-downgrade\">\n    <!-- THIS SCRIPT NEEDS TO BE LOADED FIRST BEFORE wforms.js -->\n    <script type=\"text\/javascript\" data-for=\"FA__DOMContentLoadedEventDispatch\" src=\"https:\/\/gsma.tfaforms.net\/js\/FA__DOMContentLoadedEventDispatcher.js\" defer><\/script>\n                    <style>\n                    .captcha {\n                        padding-bottom: 1em !important;\n                    }\n                    .wForm .captcha .oneField {\n                        margin: 0;\n                        padding: 0;\n                    }\n                <\/style>\n                <script type=\"text\/javascript\">\n                    \/\/ initialize our variables\n                    var captchaReady = 0;\n                    var wFORMSReady = 0;\n                    var isConditionalSubmitEnabled = false;\n\n                    \/\/ when wForms is loaded call this\n                    var wformsReadyCallback = function () {\n                        \/\/ using this var to denote if wForms is loaded\n                        wFORMSReady = 1;\n                        isConditionalSubmitEnabled = document.getElementById('submit_button').hasAttribute('data-condition');\n                        \/\/ call our recaptcha function which is dependent on both\n                        \/\/ wForms and an async call to google\n                        \/\/ note the meat of this function wont fire until both\n                        \/\/ wFORMSReady = 1 and captchaReady = 1\n                        onloadCallback();\n                    }\n                    var gCaptchaReadyCallback = function() {\n                        \/\/ using this var to denote if captcha is loaded\n                        captchaReady = 1;\n                        isConditionalSubmitEnabled = document.getElementById('submit_button').hasAttribute('data-condition');\n                        \/\/ call our recaptcha function which is dependent on both\n                        \/\/ wForms and an async call to google\n                        \/\/ note the meat of this function wont fire until both\n                        \/\/ wFORMSReady = 1 and captchaReady = 1\n                        onloadCallback();\n                    };\n\n                    \/\/ add event listener to fire when wForms is fully loaded\n                    document.addEventListener(\"wFORMSLoaded\", wformsReadyCallback);\n\n                    var enableSubmitButton = function() {\n                        var submitButton = document.getElementById('submit_button');\n                        var explanation = document.getElementById('disabled-explanation');\n                        var isConditionalSubmitConditionMet = wFORMS.behaviors.condition.isConditionalSubmitConditionMet;\n                        if (\n                            submitButton != null &&\n                            (isConditionalSubmitEnabled && isConditionalSubmitConditionMet) ||\n                            !isConditionalSubmitEnabled\n                        )\n                        {\n                            submitButton.removeAttribute('disabled');\n                            if (explanation != null) {\n                                explanation.style.display = 'none';\n                            }\n                        }\n                    };\n                    var disableSubmitButton = function() {\n                        var submitButton = document.getElementById('submit_button');\n                        var explanation = document.getElementById('disabled-explanation');\n                        if (submitButton != null) {\n                            submitButton.disabled = true;\n                            if (explanation != null) {\n                                explanation.style.display = 'block';\n                            }\n                        }\n                    };\n\n                    \/\/ call this on both captcha async complete and wforms fully\n                    \/\/ initialized since we can't be sure which will complete first\n                    \/\/ and we need both done for this to function just check that they are\n                    \/\/ done to fire the functionality\n                    var onloadCallback = function () {\n                        \/\/ if our captcha is ready (async call completed)\n                        \/\/ and wFORMS is completely loaded then we are ready to add\n                        \/\/ the captcha to the page\n                        if (captchaReady && wFORMSReady) {\n                            \/\/ Prevent both concurrent and sequential executions\n                            if (window.isCreatingCaptcha || window.hasCaptchaRendered) {\n                                return;\n                            }\n                            window.isCreatingCaptcha = true;\n\n                            try {\n                                var submitButton = document.getElementById('submit_button');\n                                var formContainer = submitButton.closest('form') || submitButton.closest('.wFormContainer');\n                                var faCaptcha = null;\n\n                                if (formContainer) {\n                                    faCaptcha = formContainer.querySelector('#google-captcha');\n                                }\n\n                                \/\/ Also check if captcha was appended to body as fallback (look for FA-specific structure)\n                                if (!faCaptcha) {\n                                    var bodyCaptchas = document.querySelectorAll('body > #google-captcha');\n                                    for (var i = 0; i < bodyCaptchas.length; i++) {\n                                        \/\/ Verify it's a FormAssembly captcha by checking for specific structure\n                                        if (bodyCaptchas[i].querySelector('.captcha .oneField .g-recaptcha')) {\n                                            faCaptcha = bodyCaptchas[i];\n                                            break;\n                                        }\n                                    }\n                                }\n\n                                if (faCaptcha) { \n                                    if (faCaptcha.parentNode) {\n                                        faCaptcha.parentNode.removeChild(faCaptcha);\n                                    } \n                                }\n\n                            \/\/ Now create a new captcha container\n                            var captchaContainer = document.createElement('div');\n                            captchaContainer.id = 'google-captcha';\n                            \n                            var captchaDiv = document.createElement('div');\n                            captchaDiv.className = 'captcha';\n                            \n                            var oneFieldDiv = document.createElement('div');\n                            oneFieldDiv.className = 'oneField';\n                            \n                            var recaptchaElement = document.createElement('div');\n                            recaptchaElement.id = 'g-recaptcha-render-div';\n                            recaptchaElement.className = 'g-recaptcha';\n                            \n                            var errorDiv = document.createElement('div');\n                            errorDiv.className = 'g-captcha-error';\n                            \n                            var helpDiv = document.createElement('div');\n                            helpDiv.className = 'captchaHelp';\n                            helpDiv.innerHTML = 'reCAPTCHA helps prevent automated form spam.<br>';\n                            \n                            var disabledDiv = document.createElement('div');\n                            disabledDiv.id = 'disabled-explanation';\n                            disabledDiv.className = 'captchaHelp';\n                            disabledDiv.style.display = 'block';\n                            disabledDiv.innerHTML = 'The submit button will be disabled until you complete the CAPTCHA.';\n                            \n                            oneFieldDiv.appendChild(recaptchaElement);\n                            oneFieldDiv.appendChild(errorDiv);\n                            oneFieldDiv.appendChild(document.createElement('br'));\n                            captchaDiv.appendChild(oneFieldDiv);\n                            captchaDiv.appendChild(helpDiv);\n                            captchaDiv.appendChild(disabledDiv);\n                            captchaContainer.appendChild(document.createElement('br'));\n                            captchaContainer.appendChild(captchaDiv);\n                            \n                            if (submitButton && submitButton.parentNode) {\n                                submitButton.parentNode.insertBefore(captchaContainer, submitButton);\n                            } else {\n                                \/\/ Fallback: append to body if submit button not found.\n                                document.body.appendChild(captchaContainer);\n                            }\n                        } finally {\n                            window.isCreatingCaptcha = false;\n                        }\n                            \n                            grecaptcha.enterprise.render('g-recaptcha-render-div', {\n                                'sitekey': '6LfMg_EaAAAAAMhDNLMlgqDChzmtYHlx1yU2y7GI',\n                                'theme': 'light',\n                                'size': 'normal',\n                                'callback': 'enableSubmitButton',\n                                'expired-callback': 'disableSubmitButton'\n                            });\n                            window.hasCaptchaRendered = true;\n                            var oldRecaptchaCheck = parseInt('1');\n                            if (oldRecaptchaCheck === -1) {\n                                var standardCaptcha = document.getElementById(\"tfa_captcha_text\");\n                                standardCaptcha = standardCaptcha.parentNode.parentNode.parentNode;\n                                standardCaptcha.parentNode.removeChild(standardCaptcha);\n                            }\n\n                            if (!wFORMS.instances['paging']) {\n                                document.getElementById(\"g-recaptcha-render-div\").parentNode.parentNode.parentNode.style.display = \"block\";\n                                \/\/document.getElementById(\"g-recaptcha-render-div\").parentNode.parentNode.parentNode.removeAttribute(\"hidden\");\n                            }\n                            document.getElementById(\"g-recaptcha-render-div\").getAttributeNode('id').value = 'tfa_captcha_text';\n\n                            var captchaError = '';\n                            if (captchaError == '1') {\n                                var errMsgText = 'The CAPTCHA was not completed successfully.';\n                                var errMsgDiv = document.createElement('div');\n                                errMsgDiv.id = \"tfa_captcha_text-E\";\n                                errMsgDiv.className = \"err errMsg\";\n                                errMsgDiv.innerText = errMsgText;\n                                var loc = document.querySelector('.g-captcha-error');\n                                loc.insertBefore(errMsgDiv, loc.childNodes[0]);\n\n                                \/* See wFORMS.behaviors.paging.applyTo for origin of this code *\/\n                                if (wFORMS.instances['paging']) {\n                                    var b = wFORMS.instances['paging'][0];\n                                    var pp = base2.DOM.Element.querySelector(document, wFORMS.behaviors.paging.CAPTCHA_ERROR);\n                                    if (pp) {\n                                        var lastPage = 1;\n                                        for (var i = 1; i < 100; i++) {\n                                            if (b.behavior.isLastPageIndex(i)) {\n                                                lastPage = i;\n                                                break;\n                                            }\n                                        }\n                                        b.jumpTo(lastPage);\n                                    }\n                                }\n                            }\n                        }\n                    }\n                <\/script>\n                                    <script src='https:\/\/www.google.com\/recaptcha\/enterprise.js?onload=gCaptchaReadyCallback&render=explicit&hl=en_GB' async\n                        defer><\/script>\n                <script type=\"text\/javascript\">\n                    document.addEventListener(\"DOMContentLoaded\", function() {\n                        var warning = document.getElementById(\"javascript-warning\");\n                        if (warning != null) {\n                            warning.parentNode.removeChild(warning);\n                        }\n                        var oldRecaptchaCheck = parseInt('1');\n                        if (oldRecaptchaCheck !== -1) {\n                            var explanation = document.getElementById('disabled-explanation');\n                            var submitButton = document.getElementById('submit_button');\n                            if (submitButton != null) {\n                                submitButton.disabled = true;\n                                if (explanation != null) {\n                                    explanation.style.display = 'block';\n                                }\n                            }\n                        }\n                    });\n                <\/script>\n                <script type=\"text\/javascript\">\n        document.addEventListener(\"FA__DOMContentLoaded\", function(){\n            const FORM_TIME_START = Math.floor((new Date).getTime()\/1000);\n            let formElement = document.getElementById(\"tfa_0\");\n            if (null === formElement) {\n                formElement = document.getElementById(\"0\");\n            }\n            let appendJsTimerElement = function(){\n                let formTimeDiff = Math.floor((new Date).getTime()\/1000) - FORM_TIME_START;\n                let cumulatedTimeElement = document.getElementById(\"tfa_dbCumulatedTime\");\n                if (null !== cumulatedTimeElement) {\n                    let cumulatedTime = parseInt(cumulatedTimeElement.value);\n                    if (null !== cumulatedTime && cumulatedTime > 0) {\n                        formTimeDiff += cumulatedTime;\n                    }\n                }\n                let jsTimeInput = document.createElement(\"input\");\n                jsTimeInput.setAttribute(\"type\", \"hidden\");\n                jsTimeInput.setAttribute(\"value\", formTimeDiff.toString());\n                jsTimeInput.setAttribute(\"name\", \"tfa_dbElapsedJsTime\");\n                jsTimeInput.setAttribute(\"id\", \"tfa_dbElapsedJsTime\");\n                jsTimeInput.setAttribute(\"autocomplete\", \"off\");\n                if (null !== formElement) {\n                    formElement.appendChild(jsTimeInput);\n                }\n            };\n            if (null !== formElement) {\n                if(formElement.addEventListener){\n                    formElement.addEventListener('submit', appendJsTimerElement, false);\n                } else if(formElement.attachEvent){\n                    formElement.attachEvent('onsubmit', appendJsTimerElement);\n                }\n            }\n        });\n    <\/script>\n\n    <link href=\"https:\/\/gsma.tfaforms.net\/dist\/form-builder\/5.0.0\/wforms-layout.css?v=1776390103\" rel=\"stylesheet\" type=\"text\/css\" \/>\n\n    <link href=\"https:\/\/gsma.tfaforms.net\/uploads\/themes\/theme-34.css\" rel=\"stylesheet\" type=\"text\/css\" \/>\n    <link href=\"https:\/\/gsma.tfaforms.net\/dist\/form-builder\/5.0.0\/wforms-jsonly.css?v=1776390103\" rel=\"alternate stylesheet\" title=\"This stylesheet activated by javascript\" type=\"text\/css\" \/>\n    <script type=\"text\/javascript\" src=\"https:\/\/gsma.tfaforms.net\/wForms\/3.11\/js\/wforms.js?v=1776390103\"><\/script>\n    <script type=\"text\/javascript\">\n        if(wFORMS.behaviors.prefill) wFORMS.behaviors.prefill.skip = true;\n    <\/script>\n    <script type=\"text\/javascript\" src=\"https:\/\/gsma.tfaforms.net\/wForms\/3.11\/js\/localization-en_GB.js?v=1776390103\"><\/script>\n    <script>\n        var FAoldJQ;\n        if (typeof $ != 'undefined' && $.noConflict) FAoldJQ = $.noConflict(true);\n    <\/script>\n    <script src=\"https:\/\/gsma.tfaforms.net\/dist\/jquery\/jquery.a7691f40d21027ec7d86.js\"><\/script>\n    <script src=\"https:\/\/gsma.tfaforms.net\/js\/typeahead\/v1.2.0\/typeahead.bundle.js\"><\/script>\n    <script>\n        var FA$ = $.noConflict(true);\n        if (FAoldJQ) $ = jQuery = FAoldJQ;\n    <\/script>\n\n    <link href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/4.4.0\/css\/font-awesome.min.css\" rel=\"stylesheet\" type=\"text\/css\" \/>\n\n<!-- FORM: BODY SECTION -->\n<div class=\"wFormContainer\" >\n    <div class=\"wFormHeader\"><\/div>\n    <style type=\"text\/css\">\n                #tfa_2617,\n                *[id^=\"tfa_2617[\"] {\n                    width: 195px !important;\n                }\n                #tfa_2617-D,\n                *[id^=\"tfa_2617[\"][class~=\"field-container-D\"] {\n                    width: auto !important;\n                }\n            <\/style><div class=\"\"><div class=\"wForm\" id=\"1100-WRPR\" data-language=\"en_GB\" dir=\"ltr\">\n<div class=\"codesection\" id=\"code-1100\"><script>\ndocument.addEventListener('DOMContentLoaded', function() {\n\n    function validateEmail(email) {\n        var personalDomains = \/@(gmail\\.com|gmail\\.co\\.in|yahoo\\.com|hotmail\\.com|outlook\\.com|icloud\\.com|aol\\.com|mail\\.com|protonmail\\.com|yandex\\.com|zoho\\.com|live\\.co\\.uk|gmail\\.co\\.uk|test\\.com|example\\.com|qq\\.com|gmx\\.com|rediffmail\\.com)$\/i;\n\n        return !personalDomains.test(email.trim());\n    }\n\n    var form = document.querySelector('form');\n    var emailField = document.getElementById('tfa_775');\n\n    if (form && emailField) {\n        form.addEventListener('submit', function(e) {\n            var email = emailField.value;\n\n            if (!validateEmail(email)) {\n                e.preventDefault(); \/\/\n                alert(\"Please enter a business email address.\");\n                emailField.focus();\n            }\n        });\n    }\n});\n<\/script><\/div>\n<form method=\"post\" action=\"https:\/\/gsma.tfaforms.net\/api_v2\/rest\/workflow\/processor\" class=\"hintsBelow labelsAbove\" id=\"1100\">\n<div id=\"tfa_2352\" class=\"section inline group\">\n<div class=\"oneField field-container-D    \" id=\"tfa_1-D\">\n<label id=\"tfa_1-L\" class=\"label preField reqMark\" for=\"tfa_1\">First Name<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_1\" name=\"tfa_1\" value=\"\" title=\"First Name\" class=\"required\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_3-D\">\n<label id=\"tfa_3-L\" class=\"label preField reqMark\" for=\"tfa_3\">Last Name<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_3\" name=\"tfa_3\" value=\"\" title=\"Last Name\" class=\"required\"><\/div>\n<\/div>\n<\/div>\n<div id=\"tfa_2353\" class=\"section inline group\">\n<div class=\"oneField field-container-D    \" id=\"tfa_5-D\">\n<label id=\"tfa_5-L\" class=\"label preField \" for=\"tfa_5\">Job Title<\/label><br><div class=\"inputWrapper\"><input type=\"text\" id=\"tfa_5\" name=\"tfa_5\" value=\"\" title=\"Job Title\" class=\"\"><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_7-D\">\n<label id=\"tfa_7-L\" class=\"label preField reqMark\" for=\"tfa_7\">Company Name<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_7\" name=\"tfa_7\" value=\"\" title=\"Company Name\" class=\"required\"><\/div>\n<\/div>\n<\/div>\n<div id=\"tfa_2819\" class=\"section inline group\">\n<div class=\"oneField field-container-D    \" id=\"tfa_775-D\">\n<label id=\"tfa_775-L\" class=\"label preField reqMark\" for=\"tfa_775\">Business Email<\/label><br><div class=\"inputWrapper\"><input aria-required=\"true\" type=\"text\" id=\"tfa_775\" name=\"tfa_775\" value=\"\" title=\"Business Email\" class='validate-custom NOT( CONTAINS(LOWER(%tfa_775%), \"@gmail\") OR CONTAINS(LOWER(%tfa_775%), \"@yahoo.com\") OR CONTAINS(LOWER(%tfa_775%), \"@hotmail.com\") OR CONTAINS(LOWER(%tfa_775%), \"@outlook.com\") OR CONTAINS(LOWER(%tfa_775%), \"@icloud.com\") OR CONTAINS(LOWER(%tfa_775%), \"@icould.com\") OR CONTAINS(LOWER(%tfa_775%), \"@aol.com\") OR CONTAINS(LOWER(%tfa_775%), \"@mail.com\") OR CONTAINS(LOWER(%tfa_775%), \"@protonmail.com\") OR CONTAINS(LOWER(%tfa_775%), \"@yandex.com\") OR CONTAINS(LOWER(%tfa_775%), \"@zoho.com\") OR CONTAINS(LOWER(%tfa_775%), \"@qq.com\") OR CONTAINS(LOWER(%tfa_775%), \"@gmx.com\") OR CONTAINS(LOWER(%tfa_775%), \"@rediffmail.com\") ) required'><\/div>\n<script type=\"text\/javascript\">\n                        if(typeof wFORMS != 'undefined') {\n                            if(wFORMS.behaviors.validation) {\n                                wFORMS.behaviors.validation.rules['customtfa_775'] =  { selector: '*[id=\"tfa_775\"]', check: 'validateCustom'};\n                                wFORMS.behaviors.validation.messages['customtfa_775'] = \"Please enter a business email address.\";\n                            }\n                        }<\/script>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_2830-D\">\n<label id=\"tfa_2830-L\" class=\"label preField reqMark\" for=\"tfa_2830\">Industry Description<\/label><br><div class=\"inputWrapper\">\n<input aria-required=\"true\" type=\"text\" id=\"tfa_2830\" name=\"tfa_2830\" value=\"\" title=\"Industry Description\" data-dataset-allow-free-responses=\"0\" data-dataset-clear-cache=\"1\" autocomplete=\"off\" data-dataset-parameters=\"undefined\" data-dataset-timestamp=\"1759331833\" data-dataset-id=\"606a2cc5-f420-44ca-976a-232db6e935b5\" data-dataset-map=\"\" data-dataset-type=\"salesforce-picklist\" data-dataset-url=\"https:\/\/gsma.tfaforms.net\/api_v2\/datasets\" class=\"required wfAutosuggest\"><i class=\"fa fa-spinner fa-pulse fa-fw tt-spinner\"><\/i><i class=\"fa fa-search tt-search\" aria-hidden=\"true\"><\/i><i class=\"fa fa-times-circle tt-clear no-input\" tabindex=\"0\" aria-label=\"Clear field\" role=\"button\"><\/i>\n<\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_2818-D\">\n<label id=\"tfa_2818-L\" class=\"label preField reqMark\" for=\"tfa_2818\">Country \/ Region<\/label><br><div class=\"inputWrapper\">\n<input aria-required=\"true\" type=\"text\" id=\"tfa_2818\" name=\"tfa_2818\" value=\"\" title=\"Country \/ Region\" data-dataset-allow-free-responses=\"0\" data-dataset-clear-cache=\"1\" autocomplete=\"off\" data-dataset-parameters=\"undefined\" data-dataset-timestamp=\"1759331957\" data-dataset-id=\"40d76123-907d-49ee-9e9a-94f77599a4d0\" data-dataset-map=\"\" data-dataset-type=\"salesforce-picklist\" data-dataset-url=\"https:\/\/gsma.tfaforms.net\/api_v2\/datasets\" class=\"required wfAutosuggest\"><i class=\"fa fa-spinner fa-pulse fa-fw tt-spinner\"><\/i><i class=\"fa fa-search tt-search\" aria-hidden=\"true\"><\/i><i class=\"fa fa-times-circle tt-clear no-input\" tabindex=\"0\" aria-label=\"Clear field\" role=\"button\"><\/i>\n<\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_2789-D\">\n<label id=\"tfa_2789-L\" class=\"label preField reqMark\" for=\"tfa_2789\">Area of Interest<\/label><br><div class=\"inputWrapper\"><select aria-required=\"true\" id=\"tfa_2789\" name=\"tfa_2789\" title=\"Area of Interest\" class=\"calc-AoI required\"><option value=\"\">Please select...<\/option>\n<optgroup id=\"tfa_2790\" label=\"Device Services:\" class=\"choiceGroup\">\n<option value=\"tfa_2793\" id=\"tfa_2793\" class=\"\">TAC Allocations<\/option>\n<option value=\"tfa_2795\" id=\"tfa_2795\" class=\"\">eUICC Identity Scheme<\/option>\n<option value=\"tfa_2791\" id=\"tfa_2791\" class=\"\">Device Database<\/option>\n<option value=\"tfa_2792\" id=\"tfa_2792\" class=\"\">Device Map<\/option>\n<option value=\"tfa_2801\" id=\"tfa_2801\" class=\"\">Device Check <\/option>\n<option value=\"tfa_2823\" id=\"tfa_2823\" class=\"\">Device Compatibility <\/option>\n<option value=\"tfa_2800\" id=\"tfa_2800\" class=\"\">Device Registry<\/option>\n<option value=\"tfa_2796\" id=\"tfa_2796\" class=\"\">eSIM Discovery<\/option>\n<option value=\"tfa_2834\" id=\"tfa_2834\" class=\"\">GSMA Entitlements<\/option>\n<option value=\"tfa_2804\" id=\"tfa_2804\" class=\"\">Network Settings Exchange<\/option>\n<\/optgroup>\n<optgroup id=\"tfa_2794\" label=\"Network Services:\" class=\"choiceGroup\">\n<option value=\"tfa_2824\" id=\"tfa_2824\" class=\"\">Equipment Marketplace<\/option>\n<option value=\"tfa_2820\" id=\"tfa_2820\" class=\"\">IRSF Prevention<\/option>\n<option value=\"tfa_2805\" id=\"tfa_2805\" data-conditionals=\"#tfa_2756\" class=\"\">PathFinder<\/option>\n<option value=\"tfa_2803\" id=\"tfa_2803\" class=\"\">Interoperability Testing<\/option>\n<option value=\"tfa_2806\" id=\"tfa_2806\" class=\"\">Root DNS<\/option>\n<\/optgroup>\n<optgroup id=\"tfa_2802\" label=\"Assurance Services:\" class=\"choiceGroup\">\n<option value=\"tfa_2822\" id=\"tfa_2822\" data-conditionals=\"#tfa_2825\" class=\"calcval-sas@gsma.com\">Security Accreditation Scheme<\/option>\n<option value=\"tfa_2817\" id=\"tfa_2817\" class=\"\">NESAS<\/option>\n<option value=\"tfa_2797\" id=\"tfa_2797\" class=\"calcval-eSA@gsma.com\">eUICC Security Assurance<\/option>\n<option value=\"tfa_2821\" id=\"tfa_2821\" class=\"\">Other (Please Comment in the Notes section)<\/option>\n<\/optgroup><\/select><\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_2825-D\">\n<label id=\"tfa_2825-L\" class=\"label preField reqMark\" for=\"tfa_2825\">SAS Customer Type<\/label><br><div class=\"inputWrapper\"><select aria-required=\"true\" id=\"tfa_2825\" name=\"tfa_2825\" data-condition=\"`#tfa_2822`\" title=\"SAS Customer Type\" class=\"required\"><option value=\"\">Please select...<\/option>\n<option value=\"tfa_2826\" id=\"tfa_2826\" class=\"\">SAS-UP<\/option>\n<option value=\"tfa_2827\" id=\"tfa_2827\" class=\"\">SAS-SM<\/option>\n<option value=\"tfa_2828\" id=\"tfa_2828\" class=\"\">Both<\/option>\n<option value=\"tfa_2829\" id=\"tfa_2829\" class=\"\">Unknown<\/option><\/select><\/div>\n<\/div>\n<\/div>\n<div class=\"oneField field-container-D    \" id=\"tfa_2753-D\">\n<label id=\"tfa_2753-L\" class=\"label preField \" for=\"tfa_2753\">Notes<\/label><br><div class=\"inputWrapper\"><textarea id=\"tfa_2753\" name=\"tfa_2753\" title=\"Notes\" class=\"\"><\/textarea><\/div>\n<\/div>\n<div id=\"tfa_2346\" class=\"section group\"><div class=\"oneField field-container-D    \" id=\"tfa_2839-D\" role=\"group\" aria-labelledby=\"tfa_2839-L\" data-tfa-labelledby=\"-L tfa_2839-L\">\n<label id=\"tfa_2839-L\" class=\"label preField \" data-tfa-check-label-for=\"tfa_2839\"><b>EMAIL CONSENT<\/b><\/label><br><div class=\"inputWrapper\"><span id=\"tfa_2839\" class=\"choices vertical \"><span class=\"oneChoice\"><input type=\"checkbox\" value=\"tfa_2841\" class=\"\" id=\"tfa_2841\" name=\"tfa_2841\" aria-labelledby=\"tfa_2841-L\" data-tfa-labelledby=\"tfa_2839-L tfa_2841-L\" data-tfa-parent-id=\"tfa_2839\"><label class=\"label postField\" id=\"tfa_2841-L\" for=\"tfa_2841\"><span class=\"input-checkbox-faux\"><\/span>I consent to the GSMA group (specifically GSMA Ltd LLC, GSMA 4YFN Event Management, SL, GSM Association, GSMA Advisory Services Ltd &amp; GSMA Services LLC) sending me information by email about GSMA products &amp; services. This includes information about GSMA\u2019s events, its device\/network services and mobile industry news &amp; insights.&nbsp;<div><br><\/div><div>Once subscribed, you can tailor what you receive from us at any time, or unsubscribe, by clicking <a target=\"_blank\" href=\"https:\/\/subscriptions.gsma.com\/\">here<\/a>. For more information on how we handle your data, please see our privacy notice: <a target=\"_blank\" href=\"https:\/\/www.gsma.com\/about-us\/legal\/gsma-global-privacy-notice\/\">Global Privacy Notice \u2013 About Us<\/a>.<\/div><\/label><\/span><\/span><\/div>\n<\/div><\/div>\n<input type=\"hidden\" id=\"tfa_2602\" name=\"tfa_2602\" value=\"\" class=\"\"><div id=\"tfa_2603\" class=\"section empty group wf-acl-hidden\"><\/div>\n<div id=\"tfa_2611\" class=\"section group\">\n<input type=\"hidden\" id=\"tfa_2613\" name=\"tfa_2613\" value=\"utm_content__c\" class=\"\"><input type=\"hidden\" id=\"tfa_2614\" name=\"tfa_2614\" value=\"utm_source__c\" class=\"\"><input type=\"hidden\" id=\"tfa_2615\" name=\"tfa_2615\" value=\"utm_campaign__c\" class=\"\"><input type=\"hidden\" id=\"tfa_2616\" name=\"tfa_2616\" value=\"utm_medium__c\" class=\"\"><input type=\"hidden\" id=\"tfa_2617\" name=\"tfa_2617\" value=\"UA-1615388-90\" class=\"calc-GOOGLEACCOUNTID\">\n<\/div>\n<div id=\"tfa_2756\" class=\"section group\" data-condition=\"`#tfa_2805`\"><div class=\"htmlSection\" id=\"tfa_2754\"><div class=\"htmlContent\" id=\"tfa_2754-HTML\">THIRD PARTY DISCLAIMER <br>GSMA PathFinder is powered by Neustar, this means they manage the sales and product delivery on behalf of the GSMA.  Your information will therefore need to be passed  directly to them in a secure manner.  Neustar will not use your data for any other purpose. <\/div><\/div><\/div>\n<div id=\"tfa_2757\" class=\"section empty group\"><\/div>\n<div class=\"oneField field-container-D     wf-acl-hidden\" id=\"tfa_2833-D\">\n<label id=\"tfa_2833-L\" class=\"label preField \" for=\"tfa_2833\"><span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 14.666667px;\">eUICC Security Assurance\/ SAS<\/span><\/label><br><div class=\"inputWrapper\"><input type=\"text\" id=\"tfa_2833\" name=\"tfa_2833\" value=\"\" readonly title=\"eUICC Security Assurance\/ SAS\" class=\"formula=AoI readonly\"><\/div>\n<\/div>\n<div class=\"actions\" id=\"1100-A\" data-contentid=\"submit_button\">\n<div id=\"google-captcha\" style=\"display: none\">\n<br><div class=\"captcha\">\n<div class=\"oneField\">\n<div class=\"g-recaptcha\" id=\"g-recaptcha-render-div\"><\/div>\n<div class=\"g-captcha-error\"><\/div>\n<br>\n<\/div>\n<div class=\"captchaHelp\">reCAPTCHA helps prevent automated form spam.<br>\n<\/div>\n<div id=\"disabled-explanation\" class=\"captchaHelp\" style=\"display: none\">The submit button will be disabled until you complete the CAPTCHA.<\/div>\n<\/div>\n<\/div>\n<input type=\"submit\" data-label=\"Submit\" class=\"primaryAction\" id=\"submit_button\" value=\"Submit\">\n<\/div>\n<div style=\"clear:both\"><\/div>\n<input type=\"hidden\" value=\"938-9f2311b1df8ca1f9b520f9bf9ea873e8\" name=\"tfa_dbCounters\" id=\"tfa_dbCounters\" autocomplete=\"off\"><input type=\"hidden\" value=\"1100\" name=\"tfa_dbFormId\" id=\"tfa_dbFormId\"><input type=\"hidden\" value=\"\" name=\"tfa_dbResponseId\" id=\"tfa_dbResponseId\"><input type=\"hidden\" value=\"469ca26cc3d61ff244549c2093bf96d8\" name=\"tfa_dbControl\" id=\"tfa_dbControl\"><input type=\"hidden\" value=\"\" name=\"tfa_dbWorkflowSessionUuid\" id=\"tfa_dbWorkflowSessionUuid\"><input type=\"hidden\" value=\"1776390103\" name=\"tfa_dbTimeStarted\" id=\"tfa_dbTimeStarted\" autocomplete=\"off\"><input type=\"hidden\" value=\"97\" name=\"tfa_dbVersionId\" id=\"tfa_dbVersionId\"><input type=\"hidden\" value=\"\" name=\"tfa_switchedoff\" id=\"tfa_switchedoff\">\n<\/form>\n<\/div><\/div><div class=\"wFormFooter\"><p class=\"supportInfo\"><br><\/p><\/div>\n  <p class=\"supportInfo\" >\n      <\/p>\n <\/div>\n\n<script\n    id=\"analytics-collector-script\"\n    type=\"text\/javascript\"\n    src=\"https:\/\/gsma.tfaforms.net\/dist\/analytics\/data-collector.f9f54c12ade21135b7c2.js\"\n    data-customer-id=\"2273\"\n    data-endpoint=\"https:\/\/analytics.formassembly.com\/v1\/traces\"\n><\/script>\n\n\n","protected":false},"excerpt":{"rendered":"<p>Catch up below to explore how to unlock the full potent [&hellip;]<\/p>\n","protected":false},"author":23,"featured_media":0,"template":"","meta":{"image":null,"json":{"gsma_resources_type":"0","gsma_resources_thumb":"null","gsma_resources_file":"null","gsma_resources_multi":null,"gsma_resources_wgr":null,"gsma_resources_video":"","gsma_resources_image":"null","gsma_resources_url":"","gsma_resources_date":"","gsma_resources_button":""}},"tags":[],"resource_categories":[148,156,144,141],"algolia_discover_state":[63],"algolia_discover_topic":[],"algolia_discover_region":[],"algolia_discover_type":[],"algolia_discover_series":[],"class_list":["post-16822","gsma_theme_resources","type-gsma_theme_resources","status-publish","hentry","resource_categories-network","resource_categories-network-settings-exchange","resource_categories-tips-and-guidance","resource_categories-webinar","algolia_discover_state-show"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Network Settings Exchange product overview and demonstration - GSMA Services<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.gsmaservices.com\/gsma_resources\/network-settings-exchange-product-overview-and-demonstration\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Network Settings Exchange product overview and demonstration\" \/>\n<meta property=\"og:description\" content=\"Catch up below to explore how to unlock the full potent [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.gsmaservices.com\/gsma_resources\/network-settings-exchange-product-overview-and-demonstration\/\" \/>\n<meta property=\"og:site_name\" content=\"GSMA Services\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-30T15:34:25+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 \u5206\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Network Settings Exchange product overview and demonstration - GSMA Services","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:\/\/www.gsmaservices.com\/gsma_resources\/network-settings-exchange-product-overview-and-demonstration\/","og_locale":"zh_CN","og_type":"article","og_title":"Network Settings Exchange product overview and demonstration","og_description":"Catch up below to explore how to unlock the full potent [&hellip;]","og_url":"https:\/\/www.gsmaservices.com\/gsma_resources\/network-settings-exchange-product-overview-and-demonstration\/","og_site_name":"GSMA Services","article_modified_time":"2026-01-30T15:34:25+00:00","twitter_card":"summary_large_image","twitter_misc":{"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.gsmaservices.com\/gsma_resources\/network-settings-exchange-product-overview-and-demonstration\/","url":"https:\/\/www.gsmaservices.com\/gsma_resources\/network-settings-exchange-product-overview-and-demonstration\/","name":"Network Settings Exchange product overview and demonstration - GSMA Services","isPartOf":{"@id":"https:\/\/www.gsmaservices.com\/#website"},"datePublished":"2026-01-15T17:31:26+00:00","dateModified":"2026-01-30T15:34:25+00:00","breadcrumb":{"@id":"https:\/\/www.gsmaservices.com\/gsma_resources\/network-settings-exchange-product-overview-and-demonstration\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.gsmaservices.com\/gsma_resources\/network-settings-exchange-product-overview-and-demonstration\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.gsmaservices.com\/gsma_resources\/network-settings-exchange-product-overview-and-demonstration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.gsmaservices.com\/"},{"@type":"ListItem","position":2,"name":"Network Settings Exchange product overview and demonstration"}]},{"@type":"WebSite","@id":"https:\/\/www.gsmaservices.com\/#website","url":"https:\/\/www.gsmaservices.com\/","name":"GSMA Services","description":"","publisher":{"@id":"https:\/\/www.gsmaservices.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.gsmaservices.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"https:\/\/www.gsmaservices.com\/#organization","name":"GSMA Services","url":"https:\/\/www.gsmaservices.com\/","logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.gsmaservices.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.gsmaservices.com\/wp-content\/uploads\/2026\/02\/logo_services_footer.png","contentUrl":"https:\/\/www.gsmaservices.com\/wp-content\/uploads\/2026\/02\/logo_services_footer.png","width":774,"height":162,"caption":"GSMA Services"},"image":{"@id":"https:\/\/www.gsmaservices.com\/#\/schema\/logo\/image\/"}}]}},"cats":[{"term_id":149,"name":"Assurance","slug":"assurance","term_group":0,"term_taxonomy_id":149,"taxonomy":"resource_categories","description":"","parent":146,"count":12,"filter":"raw"},{"term_id":139,"name":"Blog","slug":"blog","term_group":0,"term_taxonomy_id":139,"taxonomy":"resource_categories","description":"","parent":135,"count":3,"filter":"raw"},{"term_id":137,"name":"Case Study (PDF)","slug":"case-study-pdf","term_group":0,"term_taxonomy_id":137,"taxonomy":"resource_categories","description":"","parent":135,"count":8,"filter":"raw"},{"term_id":138,"name":"Case Study (Video)","slug":"case-study-video","term_group":0,"term_taxonomy_id":138,"taxonomy":"resource_categories","description":"","parent":135,"count":5,"filter":"raw"},{"term_id":113,"name":"Customer Success Story","slug":"customer-success-story","term_group":0,"term_taxonomy_id":113,"taxonomy":"resource_categories","description":"","parent":0,"count":6,"filter":"raw"},{"term_id":147,"name":"Device","slug":"device","term_group":0,"term_taxonomy_id":147,"taxonomy":"resource_categories","description":"","parent":146,"count":23,"filter":"raw"},{"term_id":153,"name":"Device Check","slug":"device-check","term_group":0,"term_taxonomy_id":153,"taxonomy":"resource_categories","description":"","parent":150,"count":12,"filter":"raw"},{"term_id":154,"name":"Device Compatibility","slug":"device-compatibility","term_group":0,"term_taxonomy_id":154,"taxonomy":"resource_categories","description":"","parent":150,"count":1,"filter":"raw"},{"term_id":151,"name":"Device Database","slug":"device-database","term_group":0,"term_taxonomy_id":151,"taxonomy":"resource_categories","description":"","parent":150,"count":5,"filter":"raw"},{"term_id":152,"name":"Device Map","slug":"device-map","term_group":0,"term_taxonomy_id":152,"taxonomy":"resource_categories","description":"","parent":150,"count":6,"filter":"raw"},{"term_id":155,"name":"Device Registry","slug":"device-registry","term_group":0,"term_taxonomy_id":155,"taxonomy":"resource_categories","description":"","parent":150,"count":5,"filter":"raw"},{"term_id":168,"name":"Disposable Number Check","slug":"disposable-number-check","term_group":0,"term_taxonomy_id":168,"taxonomy":"resource_categories","description":"","parent":150,"count":0,"filter":"raw"},{"term_id":142,"name":"Documentation","slug":"documentation","term_group":0,"term_taxonomy_id":142,"taxonomy":"resource_categories","description":"","parent":135,"count":15,"filter":"raw"},{"term_id":159,"name":"eIS","slug":"eis","term_group":0,"term_taxonomy_id":159,"taxonomy":"resource_categories","description":"","parent":150,"count":1,"filter":"raw"},{"term_id":163,"name":"Entitlements","slug":"entitlements","term_group":0,"term_taxonomy_id":163,"taxonomy":"resource_categories","description":"","parent":150,"count":1,"filter":"raw"},{"term_id":164,"name":"Equipment Marketplace","slug":"equipment-marketplace","term_group":0,"term_taxonomy_id":164,"taxonomy":"resource_categories","description":"","parent":150,"count":1,"filter":"raw"},{"term_id":158,"name":"eSA","slug":"esa","term_group":0,"term_taxonomy_id":158,"taxonomy":"resource_categories","description":"","parent":150,"count":3,"filter":"raw"},{"term_id":160,"name":"eSIM Discovery","slug":"esim-discovery","term_group":0,"term_taxonomy_id":160,"taxonomy":"resource_categories","description":"","parent":150,"count":4,"filter":"raw"},{"term_id":121,"name":"eSIM Services","slug":"esim-services","term_group":0,"term_taxonomy_id":121,"taxonomy":"resource_categories","description":"","parent":0,"count":5,"filter":"raw"},{"term_id":114,"name":"Fraud &amp; Security Services","slug":"fraud-security-services","term_group":0,"term_taxonomy_id":114,"taxonomy":"resource_categories","description":"","parent":0,"count":2,"filter":"raw"},{"term_id":166,"name":"Fraud Prevention","slug":"fraud-prevention","term_group":0,"term_taxonomy_id":166,"taxonomy":"resource_categories","description":"","parent":150,"count":2,"filter":"raw"},{"term_id":115,"name":"GSMA Device Check\u2122","slug":"device-check","term_group":0,"term_taxonomy_id":115,"taxonomy":"resource_categories","description":"","parent":0,"count":1,"filter":"raw"},{"term_id":128,"name":"GSMA Device Database","slug":"gsma-device-database","term_group":0,"term_taxonomy_id":128,"taxonomy":"resource_categories","description":"","parent":0,"count":2,"filter":"raw"},{"term_id":118,"name":"GSMA Device Map","slug":"device-map","term_group":0,"term_taxonomy_id":118,"taxonomy":"resource_categories","description":"","parent":0,"count":5,"filter":"raw"},{"term_id":127,"name":"GSMA Device Registry","slug":"device-registry-reources","term_group":0,"term_taxonomy_id":127,"taxonomy":"resource_categories","description":"","parent":0,"count":1,"filter":"raw"},{"term_id":123,"name":"GSMA eSIM Discovery","slug":"gsma-esim-discovery","term_group":0,"term_taxonomy_id":123,"taxonomy":"resource_categories","description":"","parent":0,"count":3,"filter":"raw"},{"term_id":125,"name":"GSMA eUICC Identity Scheme","slug":"euicc-identity-scheme","term_group":0,"term_taxonomy_id":125,"taxonomy":"resource_categories","description":"","parent":0,"count":0,"filter":"raw"},{"term_id":126,"name":"GSMA Fraud Intelligence Service","slug":"gsma-fraud-intelligence-service","term_group":0,"term_taxonomy_id":126,"taxonomy":"resource_categories","description":"","parent":0,"count":0,"filter":"raw"},{"term_id":129,"name":"GSMA IRSF","slug":"gsma-irsf","term_group":0,"term_taxonomy_id":129,"taxonomy":"resource_categories","description":"","parent":0,"count":0,"filter":"raw"},{"term_id":111,"name":"GSMA Network Settings Exchange","slug":"nsx-media","term_group":0,"term_taxonomy_id":111,"taxonomy":"resource_categories","description":"","parent":0,"count":1,"filter":"raw"},{"term_id":169,"name":"GSMA Pathfinder","slug":"gsma-pathfinder","term_group":0,"term_taxonomy_id":169,"taxonomy":"resource_categories","description":"","parent":150,"count":1,"filter":"raw"},{"term_id":120,"name":"GSMA Pathfinder\u2122","slug":"pathfinder","term_group":0,"term_taxonomy_id":120,"taxonomy":"resource_categories","description":"","parent":0,"count":0,"filter":"raw"},{"term_id":122,"name":"GSMA Services Showcase Live","slug":"gsma-services-showcase-live","term_group":0,"term_taxonomy_id":122,"taxonomy":"resource_categories","description":"","parent":0,"count":5,"filter":"raw"},{"term_id":116,"name":"IMEI","slug":"imei","term_group":0,"term_taxonomy_id":116,"taxonomy":"resource_categories","description":"","parent":0,"count":4,"filter":"raw"},{"term_id":165,"name":"Interoperability Testing","slug":"interoperability-testing","term_group":0,"term_taxonomy_id":165,"taxonomy":"resource_categories","description":"","parent":150,"count":2,"filter":"raw"},{"term_id":167,"name":"IRSF Prevention","slug":"irsf-prevention","term_group":0,"term_taxonomy_id":167,"taxonomy":"resource_categories","description":"","parent":150,"count":2,"filter":"raw"},{"term_id":215,"name":"Mobile Cybersecurity Knowledge Base","slug":"mobile-cybersecurity-knowledge-base","term_group":0,"term_taxonomy_id":215,"taxonomy":"resource_categories","description":"","parent":0,"count":0,"filter":"raw"},{"term_id":161,"name":"NESAS","slug":"nesas","term_group":0,"term_taxonomy_id":161,"taxonomy":"resource_categories","description":"","parent":150,"count":10,"filter":"raw"},{"term_id":148,"name":"Network","slug":"network","term_group":0,"term_taxonomy_id":148,"taxonomy":"resource_categories","description":"","parent":146,"count":10,"filter":"raw"},{"term_id":112,"name":"Network &amp; Interconnect Services","slug":"network-interconnect-services","term_group":0,"term_taxonomy_id":112,"taxonomy":"resource_categories","description":"","parent":0,"count":1,"filter":"raw"},{"term_id":156,"name":"Network Settings Exchange","slug":"network-settings-exchange","term_group":0,"term_taxonomy_id":156,"taxonomy":"resource_categories","description":"","parent":150,"count":3,"filter":"raw"},{"term_id":171,"name":"Partnership Program","slug":"partnership-program","term_group":0,"term_taxonomy_id":171,"taxonomy":"resource_categories","description":"","parent":150,"count":0,"filter":"raw"},{"term_id":140,"name":"Press Release","slug":"press-release","term_group":0,"term_taxonomy_id":140,"taxonomy":"resource_categories","description":"","parent":135,"count":0,"filter":"raw"},{"term_id":150,"name":"Product","slug":"product","term_group":0,"term_taxonomy_id":150,"taxonomy":"resource_categories","description":"","parent":0,"count":0,"filter":"raw"},{"term_id":136,"name":"Product Update","slug":"product-update","term_group":0,"term_taxonomy_id":136,"taxonomy":"resource_categories","description":"","parent":135,"count":0,"filter":"raw"},{"term_id":218,"name":"Publications","slug":"publications","term_group":0,"term_taxonomy_id":218,"taxonomy":"resource_categories","description":"","parent":0,"count":0,"filter":"raw"},{"term_id":135,"name":"Resource Type","slug":"resource-type","term_group":0,"term_taxonomy_id":135,"taxonomy":"resource_categories","description":"","parent":0,"count":0,"filter":"raw"},{"term_id":124,"name":"Roaming Services","slug":"roaming-services","term_group":0,"term_taxonomy_id":124,"taxonomy":"resource_categories","description":"","parent":0,"count":1,"filter":"raw"},{"term_id":170,"name":"Root DNS","slug":"root-dns","term_group":0,"term_taxonomy_id":170,"taxonomy":"resource_categories","description":"","parent":150,"count":0,"filter":"raw"},{"term_id":162,"name":"SAS","slug":"sas","term_group":0,"term_taxonomy_id":162,"taxonomy":"resource_categories","description":"","parent":150,"count":1,"filter":"raw"},{"term_id":146,"name":"Service Type","slug":"service-type","term_group":0,"term_taxonomy_id":146,"taxonomy":"resource_categories","description":"","parent":0,"count":0,"filter":"raw"},{"term_id":217,"name":"Supply Chain Toolbox","slug":"supply-chain-toolbox","term_group":0,"term_taxonomy_id":217,"taxonomy":"resource_categories","description":"","parent":0,"count":0,"filter":"raw"},{"term_id":119,"name":"TAC Allocation","slug":"tac-allocation","term_group":0,"term_taxonomy_id":119,"taxonomy":"resource_categories","description":"","parent":0,"count":2,"filter":"raw"},{"term_id":157,"name":"TAC Allocation","slug":"tac-allocation","term_group":0,"term_taxonomy_id":157,"taxonomy":"resource_categories","description":"","parent":150,"count":6,"filter":"raw"},{"term_id":117,"name":"TAC Services","slug":"tac-services","term_group":0,"term_taxonomy_id":117,"taxonomy":"resource_categories","description":"","parent":0,"count":7,"filter":"raw"},{"term_id":216,"name":"Technical Guidelines","slug":"technical-guidelines","term_group":0,"term_taxonomy_id":216,"taxonomy":"resource_categories","description":"","parent":0,"count":1,"filter":"raw"},{"term_id":144,"name":"Tips and Guidance","slug":"tips-and-guidance","term_group":0,"term_taxonomy_id":144,"taxonomy":"resource_categories","description":"","parent":135,"count":2,"filter":"raw"},{"term_id":145,"name":"Video","slug":"video","term_group":0,"term_taxonomy_id":145,"taxonomy":"resource_categories","description":"","parent":135,"count":4,"filter":"raw"},{"term_id":141,"name":"Webinar","slug":"webinar","term_group":0,"term_taxonomy_id":141,"taxonomy":"resource_categories","description":"","parent":135,"count":12,"filter":"raw"},{"term_id":143,"name":"Whitepaper","slug":"whitepaper","term_group":0,"term_taxonomy_id":143,"taxonomy":"resource_categories","description":"","parent":135,"count":0,"filter":"raw"}],"_links":{"self":[{"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/gsma_theme_resources\/16822","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/gsma_theme_resources"}],"about":[{"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/types\/gsma_theme_resources"}],"author":[{"embeddable":true,"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/users\/23"}],"version-history":[{"count":1,"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/gsma_theme_resources\/16822\/revisions"}],"predecessor-version":[{"id":16823,"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/gsma_theme_resources\/16822\/revisions\/16823"}],"wp:attachment":[{"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/media?parent=16822"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/tags?post=16822"},{"taxonomy":"resource_categories","embeddable":true,"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/resource_categories?post=16822"},{"taxonomy":"algolia_discover_state","embeddable":true,"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/algolia_discover_state?post=16822"},{"taxonomy":"algolia_discover_topic","embeddable":true,"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/algolia_discover_topic?post=16822"},{"taxonomy":"algolia_discover_region","embeddable":true,"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/algolia_discover_region?post=16822"},{"taxonomy":"algolia_discover_type","embeddable":true,"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/algolia_discover_type?post=16822"},{"taxonomy":"algolia_discover_series","embeddable":true,"href":"https:\/\/www.gsmaservices.com\/zh-hans\/wp-json\/wp\/v2\/algolia_discover_series?post=16822"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}