Sha256: 03096131578248023fe3fd58219cd76f22022d3d53eed8b7e648a9e0b824be8e
Contents?: true
Size: 715 Bytes
Versions: 14
Compression:
Stored size: 715 Bytes
Contents
module DropboxApi::Endpoints::Users class GetAccountBatch < DropboxApi::Endpoints::Rpc Method = :post Path = "/2/users/get_account_batch".freeze ResultType = DropboxApi::Results::BasicAccountBatch ErrorType = DropboxApi::Errors::GetAccountError # Get information about multiple user accounts. At most 300 accounts may # be queried per request. # # @param account_ids [Array<String>] List of user account identifiers. Should not # contain any duplicate account IDs. # @return [Array<BasicAccount>] Basic information about any account. add_endpoint :get_account_batch do |account_ids| perform_request :account_ids => account_ids end end end
Version data entries
14 entries across 14 versions & 1 rubygems