Gửi tin tư vấn dạng hình ảnh

Lưu ý:

  • Đối với các API sử dụng cho Shop thì API key:<api_key>.Thông tin base_url của Shop

  • Đối với các API sử dụng cho Partner thì API key:<shop_key>.Thông tin base_url của Partner

Request:

curl --location 'BASE_URL.Zalo/OASendImage' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer $API_KEY' \
--data '{
  "message": {
    "attachment_id": "string",
    "image_url": "string"
  },
  "oa_id": "string",
  "recipient": {
    "user_id": "string"
  }
}'

Response:

{
  "direction": "in",
  "msg_id": "string",
  "oa_id": "string",
  "recipient_id": "string",
  "sender_id": "string",
  "shop_id": "string",
  "type": "unknown",
  "user_id": "string",
  "zl_user_id": "string"
}

Cấu trúc body của request

Tham số
Kiểu dữ liệu
Mô tả

attachment_id

string

ID hình ảnh, có được khi dùng API upload

image_url

string

URL hình ảnh

oa_id

int64

ID của OA

user_id

string

ID người dùng Zalo

Cấu trúc thuộc tính dữ liệu trả về

Tham số
Kiểu dữ liệu
Mô tả

direction

string (nzMessageDirection)

in out

msg_id

string

ID của thông báo

oa_id

string

ID của OA

recipient_id

string

ID của người nhận

sender_id

string

ID người gửi

shop_id

string

ID của shop trên eTelecom

type

string (vqUIDType)

"unknown" "text" "audio" "video" "photo" "GIF" "link" "file" "sticker" "location" "business_card"

user_id

string

ID user trên eTelecom

Last updated