Skip to main content
GET
https://prod-api.raisedonors.com
/
api
/
Donor
/
{id}
/
address
/
{addressId}
Get a Donor Address
curl --request GET \
  --url https://prod-api.raisedonors.com/api/Donor/{id}/address/{addressId} \
  --header 'Authorization: <api-key>'
{
  "address1": "<string>",
  "address2": "<string>",
  "city": "<string>",
  "state": "<string>",
  "postal": "<string>",
  "countryString": "<string>",
  "addressTypeDisplay": "<string>",
  "id": 123,
  "donorId": 123,
  "isPrimary": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer<int64>
required
addressId
integer<int64>
required

The ID of the donor address.

Response

OK

Represents a donoraddress model.

address1
string | null

Gets or sets the address1.

address2
string | null

Gets or sets the address2.

city
string | null

Gets or sets the city name.

state
string | null

Gets or sets the state or province.

postal
string | null

Gets or sets the postal or ZIP code.

countryString
string | null

Gets or sets the country string.

addressType
enum<integer>

Gets or sets the address type.

Available options:
0,
1,
2,
3,
4,
5
addressTypeDisplay
string | null

Gets or sets the address type display.

id
integer<int64>

Gets or sets the identifier.

donorId
integer<int64>

Gets or sets the donor identifier.

isPrimary
boolean

Gets or sets whether this is the primary address for the donor.

Last modified on June 5, 2026