Skip to main content
GET
/
v1
/
individuals
/
{individualId}
/
addresses
List Individual's Addresses
curl --request GET \
  --url https://live.copilot.fabric.inc/data-customer/v1/individuals/{individualId}/addresses \
  --header 'Authorization: Bearer <token>' \
  --header 'x-site-context: <x-site-context>'
{
  "query": {
    "offset": 0,
    "limit": 10,
    "count": 54
  },
  "data": [
    {
      "_id": "61604a30fdfacd0009816e44",
      "globalAddressId": 1234,
      "type": "M",
      "addressLine1": "street 1",
      "addressLine2": "street 2",
      "addressLine3": "street 3",
      "addressLine4": "street 4",
      "county": "San Diego",
      "city": "Boston",
      "state": "Texas",
      "zipCode": 12345,
      "postalCode": "ABC-123",
      "country": "USA",
      "latitude": 38.8951,
      "longitude": -77.0364,
      "groupId": "61604a30fdfacd0009816e46",
      "additionalAttributes": {},
      "isDeleted": false,
      "isDefault": false,
      "createdAt": "2021-08-30T23:20:42.822Z",
      "updatedAt": "2021-08-30T23:20:42.822Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Headers

x-site-context
string
required
Example:

Path Parameters

individualId
string
required
Example:

Query Parameters

offset
integer
Example:
limit
integer
Example:
sortOrder
enum<string>
Available options:
asc,
desc
Example:
sortBy
enum<string>
Available options:
updatedAt,
postalCode,
type,
addressLine1,
country,
city
Example:
type
enum<string>
Available options:
M,
E,
P
Example:
addressLine1
string
Example:
city
string
Example:
country
string
Example:
postalCode
string
Example:

Response

query
object
data
OrganizationAddressResponse · object[]