Forum Discussion

Tim_Harber's avatar
Apr 22, 2020
Solved

Add new key into data group without updating entire list using the API

Is there a way using the API to add a single key to a data group without needing to POST/PATCH the entire existing list with the single new addition? In other words if I have a data group that look...
  • cjunior's avatar
    Apr 22, 2020

    Hello,

    I workaround this with options parameter:

    e.g.

    ?options=records add { key3 { data value3 } }

     

    curl -ku "admin:admin" -X PATCH -H 'Content-type: application/json' -d '{ "name":"my_datagroup" }' https://localhost/mgmt/tm/ltm/data-group/internal/my_datagroup?options=records%20add%20%7b%20key3%20%7b%20data%20value3%20%7d%20%7d |jq .

     

    Best regards.