When typing any of the approved businessclassification UUIDs the mainnet flow fails… but if i type in the one that is specified for the sandbox it is working.
for example : “businessClassification”: “9ed4449e-7d6f-11e3-a32d-5404a6144203”,
that fails on mainnet
but
“businessClassification”: “9ed3f670-7d6f-11e3-b1ce-5404a6144203”
The list of business classifications will contain an _embedded list of industry classifications. You’ll want to make sure you’re selecting an industry classification Id and not a Business Classification Id. For example, if the business classification is “Food retail and service” then you’ll want to select an industry classification ID within that like “Restaurant” with an ID of 9ed3f673-7d6f-11e3-adb1-5404a6144203 . It’s recommended to cache the list of industry classification ids used on your platform vs. calling the API each time or storing the full list of Ids.
In your example, the Id 9ed4449e-7d6f-11e3-a32d-5404a6144203, which doesn’t work, is a business classification ID, whereas the ID 9ed3f670-7d6f-11e3-b1ce-5404a6144203, which works (as expected), is an industry classification ID from the embedded list.
Hope that helps clarify things. Let us know if you have any questions!