{"id":25984590,"url":"https://github.com/stevegrossi/lessonly-elixir","last_synced_at":"2026-06-06T00:31:37.349Z","repository":{"id":57515658,"uuid":"55366679","full_name":"stevegrossi/lessonly-elixir","owner":"stevegrossi","description":"An Elixir-flavored wrapper for the Lessonly API","archived":false,"fork":false,"pushed_at":"2016-12-22T15:32:19.000Z","size":25,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-23T18:05:40.256Z","etag":null,"topics":["api-wrapper","elixir"],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stevegrossi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-03T20:11:02.000Z","updated_at":"2016-12-22T15:29:42.000Z","dependencies_parsed_at":"2022-08-29T20:32:14.227Z","dependency_job_id":null,"html_url":"https://github.com/stevegrossi/lessonly-elixir","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stevegrossi/lessonly-elixir","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevegrossi%2Flessonly-elixir","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevegrossi%2Flessonly-elixir/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevegrossi%2Flessonly-elixir/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevegrossi%2Flessonly-elixir/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stevegrossi","download_url":"https://codeload.github.com/stevegrossi/lessonly-elixir/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevegrossi%2Flessonly-elixir/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33965591,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-05T02:00:06.157Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-wrapper","elixir"],"created_at":"2025-03-05T11:25:55.194Z","updated_at":"2026-06-06T00:31:37.331Z","avatar_url":"https://github.com/stevegrossi.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lessonly\n\n[![Hex pm](https://img.shields.io/hexpm/v/lessonly.svg)](https://hex.pm/packages/lessonly)\n\nAn Elixir-flavored wrapper for the [Lessonly](http://www.lessonly.com) [API](http://docs.lessonly.com/).\n\n## Installation\n\nAdd lessonly to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [{:lessonly, \"~\u003e 0.0.1\"}]\nend\n```\n\n## Usage\n\n```elixir\n# Instantiate a client with your subdomain and API key\niex\u003e client = Lessonly.Client.new(\"test\", \"t5tNqaykVwN3Hk1VXXNLOKG6snTMnU8U\")\n\n# Make requests!\niex\u003e client |\u003e Lessonly.Lessons.all\n\n    %{\"id\" =\u003e 29414, \"title\" =\u003e \"Test Lesson 1\"},\n    %{\"id\" =\u003e 29415, \"title\" =\u003e \"Test Lesson 2\"}\n\niex\u003e client |\u003e Lessonly.User.find(544547)\n\n    %{\n      \"custom_user_field_data\" =\u003e [],\n      \"email\" =\u003e \"test1@lessonly.com\",\n      \"ext_uid\" =\u003e nil,\n      \"id\" =\u003e 544547,\n      \"name\" =\u003e \"Test User 1\",\n      \"resource_type\" =\u003e \"user\",\n      \"role\" =\u003e \"admin\",\n      \"type\" =\u003e \"user\"\n    }\n\niex\u003e assignments = %{\"assignee_id\" =\u003e 544547, \"due_by\" =\u003e \"2020-12-31\"}\niex\u003e client |\u003e Lessonly.Lesson.assign(%{\"assignments\" =\u003e assignments})\n\n    %{\n      \"assignments\" =\u003e [\n        %{\n          \"assignable_id\" =\u003e 29415,\n          \"assignable_type\" =\u003e \"Lesson\",\n          \"assignee_id\" =\u003e 544547,\n          \"completed_at\" =\u003e nil,\n          \"due_by\" =\u003e \"2020-12-31T00:00:00Z\",\n          \"ext_uid\" =\u003e nil,\n          \"id\" =\u003e 941035,\n          \"reassigned_at\" =\u003e nil,\n          \"resource_type\" =\u003e \"assignment\",\n          \"score\" =\u003e 0,\n          \"started_at\" =\u003e nil,\n          \"status\" =\u003e \"Incomplete\",\n          \"updated_at\" =\u003e \"2016-04-03T14:55:00Z\"\n        }\n      ],\n      \"type\" =\u003e \"update_lesson_assignments\"\n    }\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstevegrossi%2Flessonly-elixir","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstevegrossi%2Flessonly-elixir","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstevegrossi%2Flessonly-elixir/lists"}