Skip to main content
GET
/
api
/
v1
/
contacts
/
{contact}
Get a contact
curl --request GET \
  --url https://supmaya.com/api/v1/contacts/{contact} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "first_name": "<string>",
  "last_name": "<string>",
  "company": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

contact
integer<int64>
required

Contact ID

Response

Contact

id
integer<int64>
first_name
string | null
last_name
string | null
company
string | null
email
string<email> | null
phone
string | null
created_at
string<date-time> | null
updated_at
string<date-time> | null