Sending Contacts

This method helps you to send single or multiple contacts

Not Supported in Phone Automation

Sending Contacts

POST https://pickyassist.com/app/api/v2/push

This API allows you to send one or multiple contacts to one or multiple numbers.

Request Body

NameTypeDescription

token

string

Your API Token for authentication

application

number

8 = WhatsApp Official 10 = WhatsApp Web Automation

data

array

This is an array where you need to pass the mobile number

number

number

Mobile Number with full country code without 0 or + +55 12345 6789 – Wrong Format 55123456789 – Correct Format

contact

array

This is an array in which you need to pass contact value

first_name

string

First name of the contact

phone

number

Phone number of the contact with country code

last_name

string

Last Name

city

string

City

country

string

Country

country_code

string

Country Code

state

string

State

street

string

Street Address

address_type

string

Address Type like Work, Office

zip

number

Postal Code

email

string

Email

company

string

Company name

contact_image

string

Base 64 code of the contact image

{
    "status": 100,
    "push_id": "7478630",
    "message": "Success",
    "data": [
        {
            "msg_id": "9844217",
            "number": "934343442290",
            "credit": "0.005"
        },
        {
            "msg_id": "9844218",
            "number": "35435304220",
            "credit": "0.005"
        }
    ]
}

Sample Request Body JSON

{ 
   "token":"78a2c87687a11f54b83fd1a017f05eb6794",
   "application":"8",
   "data":[ 
      { 
         "number":"919442222222",
         "message":""
      }
   ],
   "contact":[ 
      { 
         "city":"",
         "country":"India",
         "country_code":"in",
         "state":"Delhi",
         "street":"",
         "address_type":"Home",
         "zip":"",
         "email":"test@gmail.com",
         "first_name":"Test",
         "last_name":"User",
         "phone":"+91 99999 00111",
         "phone_type":"Mobile",
         "company":"Picky Assist",
         "contact_image":""
      },
      { 
         "city":"",
         "country":"USA",
         "country_code":"in",
         "state":"Dehi",
         "street":"",
         "address_type":"Office",
         "zip":"",
         "email":"contact@gmail.com",
         "first_name":"User",
         "last_name":"Test",
         "phone":"+91 98888 00222",
         "phone_type":"Mobile",
         "company":"Picky Assist",
         "contact_image":""
      }
   ]
}

Sample Response

{
    "status": 100,
    "push_id": "7478630",
    "message": "Success",
    "data": [
        {
            "msg_id": "9844217",
            "number": "934343442290",
            "credit": "0.005"
        },
        {
            "msg_id": "9844218",
            "number": "35435304220",
            "credit": "0.005"
        }
    ]
}

Last updated