Record a delivery
curl --request POST \
--url https://{organization}.rescueconsole.com/api/fundraising/wishlist/{id}/fulfillments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"quantity": 4,
"donor_person_id": "8a2e4c6f-0b1d-4e3a-9f5c-7d2b1a0e6c38",
"received_on": "2026-09-16",
"notes": "Dropped off at the front desk."
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
quantity: 4,
donor_person_id: '8a2e4c6f-0b1d-4e3a-9f5c-7d2b1a0e6c38',
received_on: '2026-09-16',
notes: 'Dropped off at the front desk.'
})
};
fetch('https://{organization}.rescueconsole.com/api/fundraising/wishlist/{id}/fulfillments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{organization}.rescueconsole.com/api/fundraising/wishlist/{id}/fulfillments"
payload = {
"quantity": 4,
"donor_person_id": "8a2e4c6f-0b1d-4e3a-9f5c-7d2b1a0e6c38",
"received_on": "2026-09-16",
"notes": "Dropped off at the front desk."
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"item": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"category": "food",
"quantity_needed": 123,
"quantity_fulfilled": 123,
"quantity_remaining": 123,
"is_fulfilled": true,
"unit": "<string>",
"animal_id": "<string>",
"animal_name": "<string>",
"campaign_id": "<string>",
"campaign_name": "<string>",
"priority": "low",
"status": "open",
"closed_reason": "<string>",
"closed_at": "2023-11-07T05:31:56Z",
"estimated_unit_cost_cents": 123,
"estimated_remaining_cents": 123,
"external_url": "<string>",
"fulfillment_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"fulfillments": [
{
"id": "<string>",
"quantity": 123,
"donor_person_id": "<string>",
"donor_name": "<string>",
"donation_id": "<string>",
"received_on": "2023-12-25",
"notes": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}Wish list
Record a delivery
Records that some of an item arrived. The item’s status does not change: whether it is fulfilled is worked out from its deliveries. Needs write on Fundraising.
POST
/
api
/
fundraising
/
wishlist
/
{id}
/
fulfillments
Record a delivery
curl --request POST \
--url https://{organization}.rescueconsole.com/api/fundraising/wishlist/{id}/fulfillments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"quantity": 4,
"donor_person_id": "8a2e4c6f-0b1d-4e3a-9f5c-7d2b1a0e6c38",
"received_on": "2026-09-16",
"notes": "Dropped off at the front desk."
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
quantity: 4,
donor_person_id: '8a2e4c6f-0b1d-4e3a-9f5c-7d2b1a0e6c38',
received_on: '2026-09-16',
notes: 'Dropped off at the front desk.'
})
};
fetch('https://{organization}.rescueconsole.com/api/fundraising/wishlist/{id}/fulfillments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{organization}.rescueconsole.com/api/fundraising/wishlist/{id}/fulfillments"
payload = {
"quantity": 4,
"donor_person_id": "8a2e4c6f-0b1d-4e3a-9f5c-7d2b1a0e6c38",
"received_on": "2026-09-16",
"notes": "Dropped off at the front desk."
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"item": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"category": "food",
"quantity_needed": 123,
"quantity_fulfilled": 123,
"quantity_remaining": 123,
"is_fulfilled": true,
"unit": "<string>",
"animal_id": "<string>",
"animal_name": "<string>",
"campaign_id": "<string>",
"campaign_name": "<string>",
"priority": "low",
"status": "open",
"closed_reason": "<string>",
"closed_at": "2023-11-07T05:31:56Z",
"estimated_unit_cost_cents": 123,
"estimated_remaining_cents": 123,
"external_url": "<string>",
"fulfillment_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"fulfillments": [
{
"id": "<string>",
"quantity": 123,
"donor_person_id": "<string>",
"donor_name": "<string>",
"donation_id": "<string>",
"received_on": "2023-12-25",
"notes": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}{
"error": "house_trained must be 1, 0 or null (not assessed)"
}Authorizations
An API key from Settings, API keys. It starts with rc_live_.
Path Parameters
The wish list item's ID.
Body
application/json