Method: Bitly::API::Client#group_bitlinks
- Defined in:
- lib/bitly/api/client.rb
#group_bitlinks(group_guid:, size: nil, page: nil, keyword: nil, query: nil, created_before: nil, created_after: nil, modified_after: nil, archived: nil, deeplinks: nil, domain_deeplinks: nil, campaign_guid: nil, channel_guid: nil, custom_bitlink: nil, tags: nil, encoding_login: nil) ⇒ Bitly::API::Bitlink::PaginatedList
Retrieve a list of bitlinks by group [‘GET /v4/groups/group_guid/bitlinks`](dev.bitly.com/api-reference/#getBitlinksByGroup)
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 |
# File 'lib/bitly/api/client.rb', line 448 def group_bitlinks( group_guid:, size: nil, page: nil, keyword: nil, query: nil, created_before: nil, created_after: nil, modified_after: nil, archived: nil, deeplinks: nil, domain_deeplinks: nil, campaign_guid: nil, channel_guid: nil, custom_bitlink: nil, tags: nil, encoding_login: nil ) Bitlink.list( client: self, group_guid: group_guid, size: size, page: page, keyword: keyword, query: query, created_before: created_before, created_after: created_after, modified_after: modified_after, archived: archived, deeplinks: deeplinks, domain_deeplinks: domain_deeplinks, campaign_guid: campaign_guid, channel_guid: channel_guid, custom_bitlink: custom_bitlink, tags: , encoding_login: encoding_login ) end |