Get Contact Members
GET/contacts/:id/members
Get all members for a specific contact
Request
Path Parameters
id uuidrequired
ID of the contact
Responses
- 200
- 400
- 401
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
members object
content object[]
email stringrequired
firstName string
lastName string
source string
birthday string
tags string[]
currency string
country string
province string
city string
address1 string
address2 string
phone string
postalCode string
company string
totalPages integer
last boolean
totalElements boolean
sort object
sorted boolean
unsorted boolean
empty boolean
first boolean
numberOfElements integer
size integer
number integer
empty boolean
[
{
"members": {
"content": [
{
"email": "test@tinyemail.com",
"firstName": "John",
"lastName": "Doe",
"source": "sales_force",
"birthday": "04/23/1946",
"tags": [
"string"
],
"currency": "SOS",
"country": "Argentina",
"province": "Massachusetts",
"city": "Burnsville",
"address1": "31641 Candace Locks",
"address2": "Apt. 452",
"phone": "(123) 456-7890",
"postalCode": "87774",
"company": "Bode Inc"
}
],
"totalPages": 50,
"last": false,
"totalElements": 20,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"first": true,
"numberOfElements": 10000,
"size": 20,
"number": 0,
"empty": false
}
}
]
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Some error message"
}
API key is missing or invalid
Method Not Allowed
Loading...