I am trying to create an ifgrp in ONTAP and add required data ports to it. In POST request body, how can I specify ifgrp name and also add multiple data ports in one go?
Sharing POST request JSON format-
{
"enabled": true,
"type": "lag",
"lag": {
"distribution_policy": "port",
"member_ports": [
{
"name": "e3a",
"node": {
"name": "fpsa-a50-u0909-01"
}
}
],
"mode": "multimode_lacp"
},
"node": {
"name": "fpsa-a50-u0909-01"
}
}