Sign in

Update Group

documented

Updates details of a group.

PATCH /v4/groups/{group_guid}Groupsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api-ssl.bitly.com/v4/groups/{{$group_guid}}" \
  # Docs: Bitly API Reference - Update a Group endpoint (PATCH /v4/groups/{group_guid}) \
  # Base URL: https://api-ssl.bitly.com/v4/groups/{group_guid} \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -d '{\n    "name": "{{$name}}",\n    "organization_guid": "{{$organization_guid}}",\n    "bsds": [\n      "{{$bsds_1}}",\n      "{{$bsds_2}}"\n    ]\n  }'