Symptoms

A customer wants to change parameters of an instance of APS application already installed in their subscription. They cannot do this in POA Customer Control Panel due to whatever reason.

Resolution

Provider, on behalf of a customer, may use the pem.APS.setApplicationInstanceSettings POA OpenAPI method to change any setting of an installed instance of APS application.

  1. Create the text file pem.APS.setApplicationInstanceSettings.xml on POA Management Node with content of the API request like in the example below:

    <?xml version="1.0"?>
    <methodCall>
      <methodName>pem.APS.setApplicationInstanceSettings</methodName>
      <params>
        <param>
          <value>
            <struct>
              <member>
                <name>application_instance_id</name>
                <value>
                  <int>INST_ID</int>
                </value>
              </member>
              <member>
                <name>settings</name>
                <value>
                  <array>
                    <data>
                      <value>
                        <struct>
                          <member>
                            <name>name</name>
                            <value>
                              <string>SETTING_NAME</string>
                            </value>
                          </member>
                          <member>
                            <name>value</name>
                            <value>
                              <string>SETTING_VALUE</string>
                            </value>
                          </member>
                        </struct>
                      </value>
                    </data>
                  </array>
                </value>
              </member>
            </struct>
          </value>
        </param>
      </params>
    </methodCall>
    

    Replace INST_ID with the actual ID of the APS application instance in a customer's subscription to modify, replace SETTING_NAME and SETTING_VALUE with the name and value of a setting to set.

  2. Send API request to POA using the curl utility:

    curl -d@pem.APS.setApplicationInstanceSettings.xml http://localhost:8440/RPC2

Internal content