POST
/
stable
/
open
/
customers
/
send-attachment-message
curl --request POST \
  --url https://api.iomnihub.ai/stable/open/customers/send-attachment-message \
  --header 'Content-Type: application/json' \
  --data '{
  "customer_id": "1022",
  "attachment_type": "image",
  "attachment_url": "https://iomnihub.com/logo.png"
}'
{
  "id": "<string>",
  "project_id": 123,
  "timestamp": "<string>",
  "function_name": "<string>",
  "message": "<string>",
  "status": "<string>",
  "extra": {
    "timestamp": "<string>",
    "project_id": 123,
    "platform_id": 123,
    "customer_id": 123,
    "customer_phone": "<string>",
    "template_id": "<string>",
    "template_name": "<string>",
    "source": "<string>",
    "success": true,
    "report": {
      "messaging_product": "<string>",
      "contacts": [
        {
          "input": "<string>",
          "wa_id": "<string>"
        }
      ],
      "messages": [
        {
          "id": "<string>",
          "message_status": "<string>"
        }
      ]
    }
  }
}

Authorizations

api_key
string
query
required

Body

application/json
Attachment to send
customer_id
string
required

The Id of the customer in iOmniHub, can be found in iOmniHub Dashboard or API/Webhook call

Example:

"1022"

attachment_type
enum<string>
required

Type of the attachment

Available options:
image,
video,
document
Example:

"image"

attachment_url
string
required

Publicly accessible URL of the attachment

Example:

"https://iomnihub.com/logo.png"

Response

200
application/json
Successful operation
id
string
required
project_id
integer
required
timestamp
string
required
function_name
string
required
message
string
required
status
string
required
extra
object
required