> ## Documentation Index
> Fetch the complete documentation index at: https://docs.periskope.app/llms.txt
> Use this file to discover all available pages before exploring further.

# The Contact Object

> The Contact object represents a contact in WhatsApp.

<ResponseExample>
  ```json The Contact Object theme={null}
  {
  "chat_ids": [
    "120363231636311517@g.us",
    "120363298090795525@g.us",
    "120363300395249001@g.us",
    "120363329861739657@g.us",
    "120363331984403446@g.us",
    "120363346994879209@g.us",
    "120363348209472631@g.us",
    "120363352652386702@g.us",
    "120363363215130488@g.us",
    "120363367240230358@g.us",
    "120363370646127343@g.us",
    "120363371655584481@g.us",
    "120363372525172897@g.us",
    "120363373761356282@g.us",
    "120363378751945209@g.us",
    "120363387379991154@g.us",
    "120363387670530253@g.us",
    "120363388696354849@g.us",
    "120363389171465741@g.us",
    "120363391093262494@g.us",
    "120363392706769636@g.us",
    "919537851844@c.us"
  ],
  "contact_color": "#FA6533",
  "contact_id": "919537851844@c.us",
  "contact_image": "https://storage.googleapis.com/periskope-images/2997dd64-89bf-48d3-9a22-b314fca017e5%2F919537851844%40c.us.jpg?timestamp=1737445692504",
  "contact_name": "BK Local1",
  "contact_type": "user",
  "is_imported": null,
  "is_internal": false,
  "is_my_contact": null,
  "is_wa_contact": false,
  "labels": [
    "label1",
    "label2"
  ],
  "org_id": "2997dd64-89bf-48d3-9a22-b314fca017e5",
  "updated_at": "2025-01-22T05:41:15.303874+00:00"
  }
  ```
</ResponseExample>

**Attributes**

<ParamField path="chat_ids" type="array">
  An array of chat IDs that the contact is a member of.
</ParamField>

<ParamField path="contact_color" type="string">
  The hex color code assigned to the contact in Periskope.
</ParamField>

<ParamField path="contact_id" type="string">
  The unique identifier of the contact
</ParamField>

<ParamField path="contact_image" type="string">
  The URL of the contact's profile image.
</ParamField>

<ParamField path="contact_name" type="string">
  The display name of the contact.
</ParamField>

<ParamField path="contact_type" type="string">
  The type of contact.
</ParamField>

<ParamField path="is_imported" type="boolean">
  Indicates if the contact is imported from an external source.
</ParamField>

<ParamField path="is_internal" type="boolean">
  Indicates if the contact is an internal user of the organization on Periskope.
</ParamField>

<ParamField path="is_my_contact" type="boolean">
  Indicates if the contact is in the phone's contact list.
</ParamField>

<ParamField path="is_wa_contact" type="boolean">
  Indicates if the contact is a WhatsApp contact.
</ParamField>

<ParamField path="labels" type="array">
  An array of label names assigned to the contact.
</ParamField>

<ParamField path="org_id" type="string">
  The unique identifier of the organization on Periskope.
</ParamField>

<ParamField path="updated_at" type="string">
  The timestamp when the contact was last updated.
</ParamField>
