Sign in

Create opportunity

documented

Create a new fundraising opportunity.

POST /fundraising/v1/opportunitiesOpportunitiesno 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.sky.blackbaud.com/fundraising/v1/opportunities" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Bb-Api-Subscription-Key: {{BLACKBAUD_API_KEY}}" \
  -d '{"title": "{{$title}}", "description": "{{$description}}", "fund_id": "{{$fund_id}}", "amount": {{$amount}}, "currency": "{{$currency}}", "stage": "{{$stage}}", "closing_date": "{{$closing_date}}"}'