WhatsApp · Example Payload

Whatsapp Cloud Api Contact Object Example

Whatsapp Cloud Api Contact Object Example is an example object payload from WhatsApp, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

nameaddressesbirthdayemailsorgphonesurls

Example Payload

Raw ↑
{
  "name": {
    "formatted_name": "Example Business",
    "first_name": "Example Business",
    "last_name": "Example Business",
    "middle_name": "wamid.abc123",
    "prefix": "example_value",
    "suffix": "example_value"
  },
  "addresses": [
    {
      "street": "example_value",
      "city": "example_value",
      "state": "example_value",
      "zip": "example_value",
      "country": "example_value",
      "country_code": "example_value",
      "type": "WORK"
    }
  ],
  "birthday": "example_value",
  "emails": [
    {
      "email": "example_value",
      "type": "HOME"
    }
  ],
  "org": {
    "company": "example_value",
    "department": "example_value",
    "title": "example_value"
  },
  "phones": [
    {
      "phone": "+15551234567",
      "type": "HOME",
      "wa_id": "wamid.abc123"
    }
  ],
  "urls": [
    {
      "url": "https://example.com/media.jpg",
      "type": "WORK"
    }
  ]
}