Lokalise APIv2 Ruby SDK

Ruby interface for the Lokalise APIv2 that represents returned data as Ruby objects.

View the Project on GitHub lokalise/ruby-lokalise-api




Teams

Fetch teams

Doc

@client.teams(params = {})  # Input:
                            ## params (hash)
                            ### :page and :limit
                            # Output:
                            ## Collection of teams

For example:

params = {
  page: 3,
  limit: 2
}

teams = @client.teams params

teams[0].plan # => 'Trial'