NetApp Community Update
This site will enter Read Only mode on July 23 as we prepare to move to a new platform. You will still be able to view content, but posting and replying will be temporarily disabled.
We're excited to launch our new Community experience on July 30 and more information will follow soon.
Stay connected during the transition - Join our Discord community today.

ONTAP Rest API Discussions

CIFS workgroup creating

nslookup
5,503 Views

Hi One team
Is it possible to create a CIFS workgroup mode using REST-API?
I am inquiring because it is not in the document list.

Thank you.

1 ACCEPTED SOLUTION

parisi
5,409 Views

Correction on the above...

 

I did discover a way to do CLI pass through.

 

curl -siku admin:password  --request GET|POST|DELETE|PATCH  "http://x.x.x.x/api/private/cli/command"

 

Now I'll see if I can figure out the right way to run the cifs create command.

 

 

View solution in original post

4 REPLIES 4

parisi
5,480 Views

Does not seem to be currently possible. I'm on 9.8 (as I'm internal to NetApp):

 

{
  "error": {
    "message": "Unexpected argument \"workgroup\".",
    "code": "262179",
    "target": "workgroup"
  }
}

 

nslookup
5,444 Views

Thank you for your confirmation @parisi 


Is it possible to run the CLI directly using private REST-API? I'm not familiar with API, so I'm making an inquiry.

Have a nice day.

parisi
5,419 Views

No. REST API is the interface.

 

You can either use SSH commands or possibly look into using NetApp SDK/ZAPI calls. REST API likely will eventually support this, but it's not presently there.

parisi
5,410 Views

Correction on the above...

 

I did discover a way to do CLI pass through.

 

curl -siku admin:password  --request GET|POST|DELETE|PATCH  "http://x.x.x.x/api/private/cli/command"

 

Now I'll see if I can figure out the right way to run the cifs create command.

 

 

Public