Method: Line::Bot::V2::MessagingApi::ApiClient#get_narrowcast_progress

Defined in:
lib/line/bot/v2/messaging_api/api/messaging_api_client.rb

#get_narrowcast_progress(request_id:) ⇒ Line::Bot::V2::MessagingApi::NarrowcastProgressResponse, ...

Gets the status of a narrowcast message. This requests to GET https://api.line.me/v2/bot/message/progress/narrowcast When you want to get HTTP status code or response headers, use #get_narrowcast_progress_with_http_info instead of this.

Parameters:

  • The narrowcast message’s request ID. Each Messaging API request has a request ID.

Returns:

  • when HTTP status code is 200

  • when other HTTP status code is returned. This String is HTTP response body itself.

See Also:



1355
1356
1357
1358
1359
1360
1361
1362
1363
# File 'lib/line/bot/v2/messaging_api/api/messaging_api_client.rb', line 1355

def get_narrowcast_progress(
  request_id:
)
  response_body, _status_code, _headers = get_narrowcast_progress_with_http_info(
    request_id: request_id
  )

  response_body
end