Record a goal contribution
Records a manual contribution toward a goal. Requires the goals:write scope, writes_enabled, and an Idempotency-Key (a double-fired contribution would otherwise post twice). currency_code defaults to the goal's currency. A goal linked exclusively to excluded accounts returns 404, byte-identical to a nonexistent goal.
curl -X POST "https://api.403fin.io/v1/goals/123e4567-e89b-12d3-a456-426614174000/contributions" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: example_string" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"amount": "example_string",
"currency_code": "example_string",
"note": "example_string",
"period_start": "2024-12-25"
}'
import requests
import json
url = "https://api.403fin.io/v1/goals/123e4567-e89b-12d3-a456-426614174000/contributions"
headers = {
"Content-Type": "application/json",
"Idempotency-Key": "example_string",
"Authorization": "Bearer YOUR_API_TOKEN",
"X-API-Key": "YOUR_API_KEY"
}
data = {
"amount": "example_string",
"currency_code": "example_string",
"note": "example_string",
"period_start": "2024-12-25"
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch("https://api.403fin.io/v1/goals/123e4567-e89b-12d3-a456-426614174000/contributions", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Idempotency-Key": "example_string",
"Authorization": "Bearer YOUR_API_TOKEN",
"X-API-Key": "YOUR_API_KEY"
},
body: JSON.stringify({
"amount": "example_string",
"currency_code": "example_string",
"note": "example_string",
"period_start": "2024-12-25"
})
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
"encoding/json"
)
func main() {
data := []byte(`{
"amount": "example_string",
"currency_code": "example_string",
"note": "example_string",
"period_start": "2024-12-25"
}`)
req, err := http.NewRequest("POST", "https://api.403fin.io/v1/goals/123e4567-e89b-12d3-a456-426614174000/contributions", bytes.NewBuffer(data))
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Idempotency-Key", "example_string")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN")
req.Header.Set("X-API-Key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.403fin.io/v1/goals/123e4567-e89b-12d3-a456-426614174000/contributions')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Post.new(uri)
request['Content-Type'] = 'application/json'
request['Idempotency-Key'] = 'example_string'
request['Authorization'] = 'Bearer YOUR_API_TOKEN'
request['X-API-Key'] = 'YOUR_API_KEY'
request.body = '{
"amount": "example_string",
"currency_code": "example_string",
"note": "example_string",
"period_start": "2024-12-25"
}'
response = http.request(request)
puts response.body
{
"data": {
"contribution": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"goal_id": "123e4567-e89b-12d3-a456-426614174000",
"budget_item_id": "123e4567-e89b-12d3-a456-426614174000",
"amount": "example_string",
"currency": "example_string",
"period_start": "2024-12-25",
"source": "example_string",
"note": "example_string",
"detected_at": "2024-12-25T10:00:00Z"
},
"progress": {
"goal_id": "123e4567-e89b-12d3-a456-426614174000",
"current_amount": "example_string",
"target_amount": "example_string",
"remaining_amount": "example_string",
"progress_pct": "example_string",
"days_remaining": 42,
"projected_completion_date": "2024-12-25",
"monthly_contribution_needed": "example_string",
"last_contribution_at": "2024-12-25T10:00:00Z",
"monthly_shortfall": "example_string"
}
},
"pagination": {
"next_cursor": "example_string",
"has_more": true
},
"redacted_fields": [
"example_string"
],
"filtered": true
}
{}
/v1/goals/{id}/contributionsTarget server for requests. Edit to use your own host.
An opaque ff_ credential (ff_ak_ / ff_at_) presented as a Bearer token.
An opaque ff_ credential presented in the X-API-Key header.
The resource UUID.
The media type of the request body
A caller-chosen unique key (1-128 chars) that makes the write idempotent. A retry with the SAME key against the SAME operation, resource, and body replays the original response (Idempotency-Replayed: true). The same key with anything different — a changed body, a different endpoint, or a different {id} — is a 409 conflict; a still-in-flight duplicate is 409 with Retry-After. Required on every write. Stored for 24 hours. The key is bound to the target, not only to the payload, so reusing one key across two deletes (which carry no body at all) conflicts rather than replaying the first delete's response.
A positive decimal amount string.
ISO 4217 code. Defaults to the goal's currency when omitted.
The budget period (YYYY-MM-DD, first of month). Defaults to the current month.
Request Preview
Response
Response will appear here after sending the request
Authentication
Bearer token. An opaque ff_ credential (ff_ak_ / ff_at_) presented as a Bearer token.
API Key for authentication. An opaque ff_ credential presented in the X-API-Key header.
Path Parameters
The resource UUID.
Headers
A caller-chosen unique key (1-128 chars) that makes the write idempotent. A retry with the SAME key against the SAME operation, resource, and body replays the original response (Idempotency-Replayed: true). The same key with anything different — a changed body, a different endpoint, or a different {id} — is a 409 conflict; a still-in-flight duplicate is 409 with Retry-After. Required on every write. Stored for 24 hours.
The key is bound to the target, not only to the payload, so reusing one key across two deletes (which carry no body at all) conflicts rather than replaying the first delete's response.
Body
A positive decimal amount string.
ISO 4217 code. Defaults to the goal's currency when omitted.
The budget period (YYYY-MM-DD, first of month). Defaults to the current month.
Responses
The result of recording a goal contribution.
Cursor pagination state, present on list endpoints.
Field ids stripped from the payload by connection scope.
True when row or aggregate filtering is in effect for this response.