Skip to main content
GET
https://prod-api.raisedonors.com
/
api
/
Donor
/
{id}
/
address
/
list
List Donor Addresses
curl --request GET \
  --url https://prod-api.raisedonors.com/api/Donor/{id}/address/list \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "address1": "<string>",
      "address2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "postal": "<string>",
      "countryString": "<string>",
      "addressTypeDisplay": "<string>",
      "id": 123,
      "donorId": 123,
      "isPrimary": true
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

Path Parameters

id
integer<int64>
required

The ID of the donor.

Response

OK

items
object[]
total
integer<int32>
Last modified on June 5, 2026