Skip to main content
POST
/
message
/
sendContact
/
{instanceName}
Send Contact Message
curl --request POST \
  --url https://api.flowmod.ai/message/sendContact/{instanceName} \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '
{
  "number": "5511999999999",
  "contact": [
    {
      "fullName": "John Doe",
      "phoneNumber": "5511888888888",
      "wuid": "5511888888888",
      "organization": "Company Inc",
      "email": "john@company.com"
    }
  ]
}
'
{
  "status": 201,
  "error": false,
  "response": {
    "key": {
      "id": "<string>",
      "fromMe": true,
      "remoteJid": "<string>"
    },
    "message": {},
    "messageTimestamp": 123,
    "status": "PENDING",
    "pushName": "<string>"
  }
}

Authorizations

apikey
string
header
required

Organization-specific API key for Evolution API access

Path Parameters

instanceName
string
required

Body

application/json
number
string
required
Example:

"5511999999999"

contact
object[]
required

Array of contacts to send

Response

200 - application/json

Contact message sent successfully

status
number
Example:

201

error
boolean
Example:

false

response
object