Skip to main content
GET
/
contacts
/
{id}
Get Contact
curl --request GET \
  --url https://api.lumyo.co/contacts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "01973694-44c1-73ad-80b8-37d8db0b6542",
  "first_name": "Brent",
  "last_name": "Bailey",
  "email": "[email protected]",
  "created_at": "2025-06-03T16:16:16.000000Z",
  "metadata": {
    "phone": "+1234567890",
    "company": "Unlocking Potential LLC"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Response

Contact retrieved successfully

id
string<uuid>
first_name
string
last_name
string
email
string<email>
created_at
string<date-time>
metadata
object