Skip to main content
PUT
/
connection_groups
/
{connection_group_id}
Update Connection Group
curl --request PUT \
  --url https://api.xplenty.com/{account_id}/api/connection_groups/{connection_group_id} \
  --header 'Accept: <accept>' \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "connection_group": {
    "name": "<string>",
    "description": "<string>"
  },
  "connections": [
    {
      "id": 123,
      "type": "<string>"
    }
  ]
}
'
{
  "id": 123,
  "name": "<string>",
  "description": "<string>",
  "account_id": 123,
  "modified_by": {
    "name": "<string>",
    "email": "<string>"
  },
  "connections": [
    {
      "id": 123,
      "name": "<string>",
      "type": "<string>"
    }
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Enter your API key as the username. Leave the password field blank. Example: curl -u YOUR_API_KEY: https://api.xplenty.com/...

Headers

Accept
string
default:application/vnd.xplenty+json; version=2
required

API version header — required on all requests

Path Parameters

connection_group_id
integer
required

The numeric ID of the connection group.

Body

application/json
connection_group
object
connections
object[]

Replacement set of connections for the group. Omit to leave assignments unchanged.

Response

200 - application/vnd.xplenty+json; version=2

Connection group updated

id
integer
name
string
description
string | null
account_id
integer
modified_by
object

User who last modified the group.

connections
object[]

Database and cloud storage connections assigned to this group.

created_at
string<date-time>
updated_at
string<date-time>
Last modified on June 9, 2026