Sign in

Update Bitlink

documented

Updates fields on the specified Bitlink (e.g., title, tags, deeplinks). To change the destination URL, use the long_url parameter.

PATCH /v4/bitlinks/{bitlink}Bitlinksno 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/bitlinks/{{$bitlink}}" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"long_url": "{{$long_url}}", "title": "{{$title}}", "archived": {{$archived}}, "tags": {{$tags}}}'