Skip to main content
GET
Get a Donor Address
The response covers the street lines, city, state, postal code, and country, the addressType, and whether it is the donor’s primary address.

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 the address belongs to.

addressId
integer<int64>
required

The ID of the donor address.

Response

OK

Represents a donor address model.

address1
string | null

The first line of the street address.

address2
string | null

The second line of the street address, such as a unit or suite.

city
string | null

The city of the address.

state
string | null

The state or province.

postal
string | null

The postal or ZIP code.

countryString
string | null

The country as free text, for countries outside the supported list.

addressType
enum<integer>

The type of address, such as Home or Work.

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

The display name of the address type.

id
integer<int64>

The unique identifier of the address.

donorId
integer<int64>

The unique identifier of the donor.

isPrimary
boolean

Whether this is the primary address for the donor.

Last modified on July 28, 2026