Skip to main content
POST
/
contacts
cURL
curl --request POST \
  --url https://api.wapikit.com/api/contacts \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "name": "<string>",
    "phone": "<string>",
    "status": "Active",
    "attributes": {},
    "listsIds": [
      "<string>"
    ]
  }
]'
{
  "message": "<string>"
}

Body

application/json · object[]

new contact info

name
string
required
phone
string
required
status
enum<string>
required
Available options:
Active,
Inactive,
Blocked
attributes
object
required
listsIds
string[]
required

Response

contact object

message
string
required
I