Skip to main content

Hi

Looking to figure out which REST API I can use to update/amend the substitution lists.

The swagger.json at the top level isn’t showing me much help

I can subaccounts but not substitutions

Ideas?

 

 

Hi @sbenosn 
Add the Substitute List entity to the endpoint. By default, it's not available. We need to include it on the endpoint.

Sample JSON Request:

{

    "SubstitutionList": {

        "value": "BCCCOUNTRIES"

    },

    "TableName": {},

    "Values":  

        {

            "OriginalValue": {

                "value": "India"

            },

            "SubstitutionID": {

                "value": "BCCCOUNTRIES"

            },

            "SubstitutionValue": {

                "value": "IN"

            },

            "ValueID": {

                "value": 1

            }

           

        }

    ]

}


Reply