v1

latestOpenAPI 3.0.02026-08-062903562.2 MB
Organization Notification

createOrganizationNotification

Create a Nofication for the specified Organization

post/organizations/{organization}/notifications

Path parameters

organizationinteger required
Example:82364

Primary Identifier of specified Organization

Request body

enabledboolean

Indicates if the Notification is active or not

email_addressstring

Email address who will receive the updates

type'transaction' | 'third_party' | 'recurring' | 'fundraising' | 'chargeback' | 'payout_report'

Type of notifications to be received

Example request

{
  "enabled": true,
  "email_address": "test@gofundme.com",
  "type": "transaction"
}

Response

Success

idinteger

Primary identifier of record

organization_idinteger

Primary identifier of associated Organization

type'transaction' | 'third_party' | 'recurring' | 'fundraising' | 'chargeback' | 'payout_report'

Type of notifications to be received

email_addressstring

Email address who will receive the updates

enabledboolean

Indicates if the Notification is active or not

Example response

{
  "id": 238,
  "organization_id": 82364,
  "type": "transaction",
  "email_address": "test@gofundme.com",
  "enabled": true
}