Sign in

Update collection

documented

Update an existing collection.

PUT /collection.jsonCollectionsno 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)

Note: Based on the Yumpu API docs (base URL: https://api.yumpu.com/2.0; PUT collection.json is supported). ([developers.yumpu.com](https://developers.yumpu.com/api/collections/collectionsget))

npx -y keychains@latest curl "https://api.yumpu.com/2.0/collection.json" \
  -X PUT \
  -H "X-ACCESS-TOKEN: {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"id": "{{$collection_id}}", "name": "{{$collection_name}}", "order": {{$order}}}'
Update collection · Yumpu · OpenIntegrations