Skip to main content
GET
/
contacts
/
{contact}
cURL
curl --request GET \
  --url https://api.caspen.com/v1/contacts/{contact}
{
  "id": "<string>",
  "type": "<string>",
  "title": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "preferred_name": "<string>",
  "profession": "<string>",
  "company": "<string>",
  "email": "<string>",
  "notes": "<string>",
  "phone_numbers": [
    {
      "id": "<string>",
      "code": "<string>",
      "number": "<string>",
      "type": "<string>"
    }
  ],
  "address": {
    "line1": "<string>",
    "line2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "postal_code": "<string>",
    "country_code": "<string>"
  },
  "created_at": "<string>"
}

Path Parameters

contact
string
required

The contact ID

Response

ContactResource

id
string

The contact's unique identifier.

type
string

The contact's type.

title
string | null

The contact's honorific title.

first_name
string

The contact's given name.

last_name
string | null

The contact's family name.

preferred_name
string | null

The contact's preferred name.

profession
string | null

The contact's profession or occupation.

company
string | null

The contact's company or organization.

email
string | null

The contact's email address.

notes
string | null

The contact's notes.

phone_numbers
object[]

A list of the contact's phone numbers.

address
object

The contact's address details.

created_at
string

The timestamp when the contact was created (ISO 8601).