Skip to main content

Create a donation

POST 

/v1/donations

Creates a new Donation of type direct. We will request payment from you for the Donations aggregated over a period. Goodstack and our associated foundations will then handle the ongoing safe and efficient disbursement of funds to the nonprofit.

Please note that if you are creating with a userId and no organisationId the user must be already supporting an organisation.

Request​

Header Parameters

    Idempotency-Key string

    Idempotency key.

Body

required

    oneOf

    amount integerrequired

    Amount to be donated. A positive integer representing how much to donate in the smallest currency unit, for example 100 pence to donate £1.00.

    Example: 120
    currencyCode stringrequired

    Three-letter ISO currency code. Only currency codes supported by our foundations will be accepted.

    Example: GBP
    organisationId stringrequired
    firstName string

    Possible values: <= 255 characters

    lastName string

    Possible values: <= 255 characters

    email string

    Possible values: <= 255 characters

    consentedToBeContactedByOrg string

    Possible values: [yes, no]

    anonymous string

    Possible values: [yes, no]

    metadata object

    Key-value data that you can attach to a Donation.

    Example: {"key1":"value1","key2":"value2"}

Responses​

Successfully created a Donation

Schema

    data

    object

    id string
    Example: donation_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    userId stringnullable
    organisationId stringnullable
    amount integer

    Donation amount. A positive integer representing donation amount in the smallest currency unit, for example 100 pence for a donation of £1.00.

    Example: 123
    currencyCode string

    Three-letter ISO currency code

    Example: AUD
    createdAt date-time
    Example: 2020-10-13T17:46:54.000Z
    status string

    Possible values: [ACTIVE, REQUESTED_PAYMENT, RECEIVED_PAYMENT, DISBURSED, CANCELLED]

    firstName stringnullable

    Users first name.

    lastName stringnullable

    Users last name.

    email stringnullable

    Users email.

    consentedToBeContacted stringnullable

    Whether the user consented to be contacted by the benefitting organisation.

    Possible values: [yes, no]

    anonymous stringnullable

    Whether the user wants to share their donation publicly or not.

    Possible values: [yes, no]

    metadata

    object

    nullable

    Key-value data that you can attach to an object.

    property name* string
    giftAidId stringnullable
    cancelledAt date-timenullable
    Example: 2020-10-13T17:46:54.000Z
    donationRequestId stringnullable
    Example: donationrequest_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    accountId stringnullable
    Example: account_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    type string

    Possible values: [direct]

    object string
    Example: donation
Loading...