Method: Line::Bot::V2::MessagingApi::ApiClient#multicast
- Defined in:
- lib/line/bot/v2/messaging_api/api/messaging_api_client.rb
#multicast(multicast_request:, x_line_retry_key: nil) ⇒ String, ...
An API that efficiently sends the same message to multiple user IDs. You can’t send messages to group chats or multi-person chats. This requests to POST https://api.line.me/v2/bot/message/multicast When you want to get HTTP status code or response headers, use #multicast_with_http_info instead of this.
2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 |
# File 'lib/line/bot/v2/messaging_api/api/messaging_api_client.rb', line 2660 def multicast( multicast_request:, x_line_retry_key: nil ) response_body, _status_code, _headers = multicast_with_http_info( multicast_request: multicast_request, x_line_retry_key: x_line_retry_key ) response_body end |