1. contacts
Peach
  • template-messages
    • Send a pre-approved template message
      POST
    • Poll template message status
      GET
    • Poll template messages status
      GET
    • Connect to AI Agent
      POST
    • Send an App message
      POST
  • broadcasts
    • List broadcasts
      GET
    • Launch a broadcast
      POST
    • Poll broadcast status
      GET
    • Get broadcast details
      GET
    • Archive broadcast
      PATCH
    • Cancel broadcast
      PATCH
  • whatsapp_templates
    • List all templates
      GET
    • Create a template
      POST
    • Update template
      PATCH
    • Archive template
      PATCH
    • Pause template
      PATCH
    • Submit template
      PATCH
    • Fetch template details
      GET
  • conversations
    • List messages
      GET
    • List conversations
      GET
    • Update conversation status
      PATCH
    • Agent Assignment
      POST
    • Close Conversation
      POST
  • contacts
    • Create multiple contacts
      POST
    • Update a contact
      PATCH
    • Create a contact
      POST
    • Bulk update communication preferences
      POST
  • orders
    • Create an order
    • Find order by ID
    • Create a refund for an order
  • medias
    • About uploaded media
    • List available medias
    • Add a media (Deprecated)
    • Remove a media
    • Create a direct upload for media
    • Finalize a direct uploaded media
  • webhooks
    • Order status webhooks
    • Flow execution status webhooks
    • Message delivery status webhooks
    • AI Agent Execution Webhooks
  • Schemas
    • Schemas
      • WhatsApp Template
      • WhatsApp Template Parameters
      • Order
      • RefundRequest
      • Contact
      • LineItem
      • OrderExpiry
      • TemplateMessage
      • AnyValue
      • Argument
      • Message
      • MessageResponse
  1. contacts

Create multiple contacts

POST
https://app.trypeach.io/api/v1/contacts
Create a contact

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Body Params application/json

Example
[
    {
        "name": "Alfred Hitchcock",
        "email": "alfred@example.com",
        "phone_number": "+19019019191 or +919876543210",
        "metadata": {
            "source": "website",
            "location": "bangalore"
        }
    },
    {
        "name": "Stanley Kubrick",
        "email": "stanley@example.com",
        "phone_number": "+14155552671 or +919876543211",
        "metadata": {
            "source": "referral",
            "location": "mumbai"
        }
    },
    {
        "name": "Akira Kurosawa",
        "email": "akira@example.com",
        "phone_number": "+81345678901 or +919876543212",
        "metadata": {
            "source": "website",
            "location": "delhi"
        }
    },
    {
        "name": "Satyajit Ray",
        "email": "satyajit@example.com",
        "phone_number": "+913324176666 or +919876543213",
        "metadata": {
            "source": "app",
            "location": "kolkata"
        }
    },
    {
        "name": "Ingmar Bergman",
        "email": "ingmar@example.com",
        "phone_number": "+46812345678 or +919876543214",
        "metadata": {
            "source": "referral",
            "location": "chennai"
        }
    }
]

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.trypeach.io/api/v1/contacts' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "name": "Alfred Hitchcock",
        "email": "alfred@example.com",
        "phone_number": "+19019019191 or +919876543210",
        "metadata": {
            "source": "website",
            "location": "bangalore"
        }
    },
    {
        "name": "Stanley Kubrick",
        "email": "stanley@example.com",
        "phone_number": "+14155552671 or +919876543211",
        "metadata": {
            "source": "referral",
            "location": "mumbai"
        }
    },
    {
        "name": "Akira Kurosawa",
        "email": "akira@example.com",
        "phone_number": "+81345678901 or +919876543212",
        "metadata": {
            "source": "website",
            "location": "delhi"
        }
    },
    {
        "name": "Satyajit Ray",
        "email": "satyajit@example.com",
        "phone_number": "+913324176666 or +919876543213",
        "metadata": {
            "source": "app",
            "location": "kolkata"
        }
    },
    {
        "name": "Ingmar Bergman",
        "email": "ingmar@example.com",
        "phone_number": "+46812345678 or +919876543214",
        "metadata": {
            "source": "referral",
            "location": "chennai"
        }
    }
]'

Responses

🟢201Created
application/json
Created a contact successfully
Body

Example
{
    "name": "Alfred Hitchcock",
    "language": "string",
    "email": "alfred@example.com",
    "phone_number": "+919988776655",
    "metadata": {
        "key": "value"
    }
}
🟠422Parameter Error
Modified at 2026-04-21 12:14:00
Previous
Close Conversation
Next
Update a contact
Built with