Sign in

Update notification

documented

Updates or triggers the specified notification identified by unique_id.

POST /notifications/{unique_id}Notificationsno 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.donately.com/v2/notifications/{{$unique_id}}\" \
  -X POST \
  -H \"Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}\" \
  -H \"Content-Type: application/json\" \
  -H \"Accept: application/json\" \
  -H \"X-Donately-Api-Key: {{DONATELY_API_KEY}}\" \
  -d '{"title": "{{$title}}", "body": "{{$body}}", "recipient_email": "{{$recipient_email}}", "payload": {"donation_id": "{{$donation_id}}", "donor_name": "{{$donor_name}}", "donation_amount": {{$donation_amount}}, "currency": "{{$currency}}"}}'
Update notification · Donately · OpenIntegrations