latestOpenAPI 3.1.02026-08-194237902.5 MB

563848e0ecc0

Group

Associate a group location with networks

Associates an existing group location with one or more networks, creating group-location–network membership records. Use this endpoint after the group location has been added to the group (via POST /groups/{groupId}/locations); call once per set of networks to associate, and use PATCH /groups/locations/{locationId}/networks to update effective dates on existing associations. Not idempotent — if an active association between this location and a requested network already exists, the server returns 409 Conflict rather than silently succeeding; resolve or terminate the existing association first.

post/groups/locations/{locationId}/networks

Path parameters

locationIdstring required

Group Location ID (tenantGroupLocationId)

Headers

tenant-idstring

Request body

Example request

{
  "networks": [
    {
      "networkId": "network-123"
    }
  ]
}

Response

Group location successfully associated with networks

tenantGroupLocationIdstring

ID of the group location

Example response

{
  "tenantGroupLocationId": "loc-123",
  "networks": [
    {
      "networkId": "network-123",
      "tenantGroupLocationNetworkId": "tgln-456"
    }
  ]
}