Create a contribution [DEPRECATED: Use transaction routes]
Headers
-
Content-Type
string -
Accept
string
Path parameters
-
plan_uuid
string Required -
subAccount_uuid
string Required
Body
Required
-
type
string Required The type of contribution. Available options: recurring and adhoc
-
contributor_type
string The type of contributor. Available options: self, employer, family, government, salary_sacrifice and other
-
frequency
string The frequency of the contribution. Required if the contribution type is "recurring". Available options: daily, weekly, fortnightly, four_weekly, monthly, bimonthly, quarterly, biannually, annually, adhoc and one_off
-
started_at
date The start date of a recurring contribution. Required if the contribution type is "recurring".
-
ended_at
date The end date of a recurring contribution. Required if the contribution type is "recurring".
-
paid_at
date The date the adhoc contribution was paid. Required if the contribution type is "adhoc".
-
value
integer The value of the contribution in pennies. For example, £40.00 would be 4000.
-
notes
string Optional notes to add to the contribution.
curl \
--request POST 'https://api.plannrcrm.com/api/v1/plans/plan_uuid/sub-accounts/subAccount_uuid/contributions' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"type":"recurring","contributor_type":"self","frequency":"monthly","started_at":"2025-03-02","ended_at":"2025-04-02","paid_at":"2025-04-02","value":4000,"notes":"Example Notes"}'
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"type": "recurring",
"contributor_type": "self",
"frequency": "monthly",
"started_at": "2025-03-02",
"ended_at": "2025-04-02",
"paid_at": "2025-04-02",
"value": 4000,
"notes": "Example Notes"
}
{
"uuid": "a1575fe3-75d6-4405-b274-9856a5a981a7",
"value": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"paid_at": "2025-04-02T13:27:57+01:00",
"created_at": "2025-04-02T13:27:57+01:00",
"updated_at": "2025-04-02T13:27:57+01:00"
}