Returns a list of contacts in the network.
Success
{- "_object": "/api/response",
- "version": 2,
- "data": {
- "_object": "/api/collections/paginated",
- "next": null,
- "total_count": 121,
- "data": [
- {
- "_object": "/network/contact",
- "id": "ABC123",
- "name": "Joe Schmoe",
- "email": "joe@example.com",
- "phone_number": "6789998212",
- "locations": {
- "_object": "/api/refs/collection",
- "ref_type": "/network/location",
}, - "company": {
- "_object": "/api/refs/object",
- "ref_type": "/network/company",
- "id": "2UXaj4xcHoW8nwh9UVOMpw"
}
}
]
}
}
The created contact
error
{- "name": "John Smith",
- "email": "john@example.com",
- "phone_number": "861-555-5555",
- "company_id": "2UXaj4xcHoW8nwh9UVOMpw"
}
Success
{- "_object": "/api/response",
- "version": 2,
- "data": {
- "_object": "/network/contact",
- "id": "FHLKEFHHoW8nwh9UVOMpw",
- "name": "John Smith",
- "email": "john@example.com",
- "phone_number": "861-555-5555",
- "locations": {
- "_object": "/api/refs/collection",
- "ref_type": "/network/location",
}, - "company": {
- "_object": "/api/refs/object",
- "ref_type": "/network/company",
- "id": "2UXaj4xcHoW8nwh9UVOMpw"
}
}
}
Retrieves the details of a single contact.
Success
error
Success
{- "_object": "/api/response",
- "version": 2,
- "data": {
- "_object": "/network/contact",
- "id": "ABC123",
- "name": "Joe Schmoe",
- "email": "joe@example..com",
- "phone_number": "6789998212",
- "locations": {
- "_object": "/api/refs/collection",
- "ref_type": "/network/location",
}, - "company": {
- "_object": "/api/refs/object",
- "ref_type": "/network/company",
- "id": "2UXaj4xcHoW8nwh9UVOMpw"
}
}
}
The updated contact
error
{- "name": "John Smith",
- "email": "john_new_email@example.com",
- "phone_number": "861-555-7777"
}
Success
{- "_object": "/api/response",
- "version": 2,
- "data": {
- "_object": "/network/contact",
- "id": "FHLKEFHHoW8nwh9UVOMpw",
- "name": "John Smith",
- "email": "john_new_email@example.com",
- "phone_number": "861-555-7777",
- "locations": {
- "_object": "/api/refs/collection",
- "ref_type": "/network/location",
}, - "company": {
- "_object": "/api/refs/object",
- "ref_type": "/network/company",
- "id": "2UXaj4xcHoW8nwh9UVOMpw"
}
}
}