Headers
Bearer token for authentication
Path Parameters
UUID of the person to retrieve
Response
Person retrieved successfully
curl --request GET \
--url https://api.wellapp.ai/v1/people/{id} \
--header 'Authorization: <authorization>'{
"data": {
"type": "people",
"id": "550e8400-e29b-41d4-a716-446655440000",
"attributes": {
"first_name": "John",
"last_name": "Doe",
"full_name": "John Doe",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-20T14:45:00Z"
},
"relationships": {
"emails": {
"data": [
{
"type": "emails",
"id": "550e8400-e29b-41d4-a716-446655440002"
}
]
},
"phones": {
"data": [
{
"type": "phones",
"id": "550e8400-e29b-41d4-a716-446655440003"
}
]
},
"companies": {
"data": [
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440001"
}
]
}
}
},
"included": [
{
"type": "emails",
"id": "550e8400-e29b-41d4-a716-446655440002",
"attributes": {
"email": "john.doe@example.com",
"type": "work"
}
},
{
"type": "phones",
"id": "550e8400-e29b-41d4-a716-446655440003",
"attributes": {
"phone": "+1-555-123-4567",
"type": "mobile"
}
},
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440001",
"attributes": {
"name": "Tech Solutions Inc.",
"description": "Leading technology solutions provider",
"workspace_id": "550e8400-e29b-41d4-a716-446655440004"
}
}
]
}Retrieve a single person by ID with related emails, phones, and social links
curl --request GET \
--url https://api.wellapp.ai/v1/people/{id} \
--header 'Authorization: <authorization>'{
"data": {
"type": "people",
"id": "550e8400-e29b-41d4-a716-446655440000",
"attributes": {
"first_name": "John",
"last_name": "Doe",
"full_name": "John Doe",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-20T14:45:00Z"
},
"relationships": {
"emails": {
"data": [
{
"type": "emails",
"id": "550e8400-e29b-41d4-a716-446655440002"
}
]
},
"phones": {
"data": [
{
"type": "phones",
"id": "550e8400-e29b-41d4-a716-446655440003"
}
]
},
"companies": {
"data": [
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440001"
}
]
}
}
},
"included": [
{
"type": "emails",
"id": "550e8400-e29b-41d4-a716-446655440002",
"attributes": {
"email": "john.doe@example.com",
"type": "work"
}
},
{
"type": "phones",
"id": "550e8400-e29b-41d4-a716-446655440003",
"attributes": {
"phone": "+1-555-123-4567",
"type": "mobile"
}
},
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440001",
"attributes": {
"name": "Tech Solutions Inc.",
"description": "Leading technology solutions provider",
"workspace_id": "550e8400-e29b-41d4-a716-446655440004"
}
}
]
}Bearer token for authentication
UUID of the person to retrieve
Person retrieved successfully
Show child attributes