Sign in

Create offline payment

documented

Create an offline (manual) payment for a campaign.

POST /v1/payments/offlinePaymentsno 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.connectionpoint.com/v1/payments/offline" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"campaign_id": "{{$campaign_id}}", "amount": {{$amount}}, "currency": "{{$currency}}", "payer_name": "{{$payer_name}}", "contact_email": "{{$contact_email}}", "address": {"first_name": "{{$address_first_name}}", "last_name": "{{$address_last_name}}", "street": "{{$address_street}}", "city": "{{$address_city}}", "state": "{{$address_state}}", "postal_code": "{{$address_postal_code}}", "country": "{{$address_country}}"}, "message": "{{$message}}"}'"
Create offline payment · ConnectionPoint · OpenIntegrations