Create consent (single constituent)
documentedAdd a consent for a specific constituent.
POST /constituents/{constituent_id}/consentsConsent APIno implementation yet0 runsNo 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/consent/v1/constituents/{{$constituent_id}}/consents" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Bb-Api-Subscription-Key: {{BLACKBAUD_API_KEY}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"channel": "{{$channel}}", "category": "{{$category}}", "solicit_code": "{{$solicit_code}}", "consent_statement": "{{$consent_statement}}", "source": "{{$source}}", "date_given": "{{$date_given}}"}'