Forum Discussion

API_User's avatar
API_User
Level 9
2 years ago

Can't edit a circuit's bandwidth

Hi, I have a circuit and I'm trying to change the bandwidth using PATCH /fabric/v4/connections/{id} Here's the payload: { "op": "replace", "path": "/bandwidth", "value": 900 } But I...
  • API_User's avatar
    2 years ago

    Solved.

    I needed to wrap the JSON body in a list like so:

    [
    {
    "op": "replace",
    "path": "/bandwidth",
    "value": 900
    }
    ]