Skip to content

List constituents in a household

GET
/api/households/{id}/members
curl --request GET \
--url https://example.com/api/households/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/members \
--header 'Authorization: Bearer <token>'
id
required

The UUID of the household

string format: uuid

A list of constituents in the household

Media typeapplication/json
Array<object>
object
id
required

Unique identifier (UUID v4) for the resource.

string format: uuid
firstName
required

First or given name.

string
lastName
required

Last or family name.

string
phone

E.164 formatted contact phone number.

string
nullable
email

Primary email address.

string
nullable
addressStreet

Physical street address line.

string
nullable
dateOfBirth

Date of birth formatted as YYYY-MM-DD.

string format: date
nullable
Example
[
{
"id": "a1b2c3d4-e5f6-7890-abcd-1234567890ab",
"firstName": "Sarah",
"lastName": "Jenkins",
"phone": "+17045550199",
"email": "admin@dreamcenterconnect.com",
"addressStreet": "456 Oak Avenue",
"dateOfBirth": "1988-04-15"
}
]

Unauthorized

Forbidden

Household not found