Method: LessonlyApi::Tags.show

Defined in:
lib/lessonly_api/tags.rb

.show(id) ⇒ ResourceType::Tag

Retrieve the tag’s information docs.lessonly.com/#show-tag-details

Parameters:

  • id (Integer)

    ID of the tag

Returns:



18
19
20
21
# File 'lib/lessonly_api/tags.rb', line 18

def show(id)
  raw_result = send_get("/tags/#{id}")
  ResourceType::Tag.new(raw_result)
end