Can you set RM classification in Add Folder REST call?

This is not documented so the answer is officially no but just in case....
Just like you can set category attributes by filling in the body portion of a REST call to build a new folder, can you similarly fill in a portion of that to apply an RM Classification to said folder? I know there is a REST call to do this, but given the sheer number to be created, I'm looking for efficiencies. Creating a folder, then doing another http transaction to set the RM classification is not ideal.
Thanks in advance
-Hugh
Tagged:

Comments

  • in case you still need this...
    You can fill the body portion as follows to get RM Classification applied

    {
    "name":"folder name",
    "parent_id":2000,
    "type":0,
    "roles":{
    "RMClassifications":
    {
    "rmclassification_id":"{1662482}"
    }
    }
    }