{"id":13509428,"url":"https://github.com/trenpixster/asanaficator","last_synced_at":"2026-02-18T09:41:16.556Z","repository":{"id":34436153,"uuid":"38369868","full_name":"trenpixster/asanaficator","owner":"trenpixster","description":"An elixir wrapper for Asana","archived":false,"fork":false,"pushed_at":"2024-08-20T14:31:08.000Z","size":89,"stargazers_count":2,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-27T18:44:20.884Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/trenpixster.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-07-01T12:26:31.000Z","updated_at":"2023-11-30T10:24:44.000Z","dependencies_parsed_at":"2024-11-01T09:43:40.335Z","dependency_job_id":null,"html_url":"https://github.com/trenpixster/asanaficator","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"6c8c1ff1865c5fe50d892d34127cb4c4d1cffc07"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/trenpixster/asanaficator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trenpixster%2Fasanaficator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trenpixster%2Fasanaficator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trenpixster%2Fasanaficator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trenpixster%2Fasanaficator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trenpixster","download_url":"https://codeload.github.com/trenpixster/asanaficator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trenpixster%2Fasanaficator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29575058,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:38:15.585Z","status":"ssl_error","status_checked_at":"2026-02-18T08:38:14.917Z","response_time":162,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-08-01T02:01:07.595Z","updated_at":"2026-02-18T09:41:11.546Z","avatar_url":"https://github.com/trenpixster.png","language":"Elixir","funding_links":[],"categories":["Third Party APIs"],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/trenpixster/asanaficator.png)](https://travis-ci.org/trenpixster/asanaficator)\n\n# Asanaficator\n\nSimple Elixir wrapper for the [Asana API](https://asana.com/developers/api-reference).\nBased on [Tentacat](https://github.com/edgurgel/tentacat).\n\nDocumentation can be found [here](http://hexdocs.pm/asanaficator/).\n\n## Features\n\n* Users\n* Tasks\n  * Projects\n\n## Quickstart\n\nFetching dependencies and running on elixir console:\n\n```console\nmix deps.get\niex -S mix\n```\n\nYou will see something like this:\n\n```\nErlang/OTP 17 [erts-6.0] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false]\n\nInteractive Elixir (0.13.3) - press Ctrl+C to exit (type h() ENTER for help)\niex(1)\u003e\n```\n\nNow you can run the examples!\n\n## Examples\n\nEvery call to Asana need a client.\n\nGetting info from a user using a client\n\n```iex\niex\u003e client = Asanaficator.Client.new(%{access_token: \"1234567890\"})\nAsanaficator.Client{auth: %{access_token: \"1234567890\"}, endpoint: \"https://app.asana.com/api/1.0/\"}\niex\u003e Asanaficator.Users.me client\n%{\"data\" =\u003e %{\"email\" =\u003e \"john.doe@example.com\", \"id\" =\u003e 123,\n    \"name\" =\u003e \"John Doe\",\n    \"photo\" =\u003e %{\"image_128x128\" =\u003e \"https://s3.amazonaws.com/profile_photos/123.abc_128x128.png\",\n      \"image_21x21\" =\u003e \"https://s3.amazonaws.com/profile_photos/123.abc_21x21.png\",\n      \"image_27x27\" =\u003e \"https://s3.amazonaws.com/profile_photos/123.abc_27x27.png\",\n      \"image_36x36\" =\u003e \"https://s3.amazonaws.com/profile_photos/123.abc_36x36.png\",\n      \"image_60x60\" =\u003e \"https://s3.amazonaws.com/profile_photos/123.abc_60x60.png\"},\n    \"workspaces\" =\u003e [%{\"id\" =\u003e 456, \"name\" =\u003e \"example.com\"},\n     %{\"id\" =\u003e 789, \"name\" =\u003e \"Personal Projects\"}]}}\n```\n\nGetting a task\n\n```iex\niex\u003e Asanaficator.Tasks.find(12345, client)\n%{\"data\" =\u003e %{\"assignee\" =\u003e nil, \"assignee_status\" =\u003e \"upcoming\",\n    \"completed\" =\u003e false, \"completed_at\" =\u003e nil,\n    \"created_at\" =\u003e \"2015-06-30T00:40:30.971Z\", \"due_at\" =\u003e nil,\n    \"due_on\" =\u003e nil,\n    \"followers\" =\u003e [%{\"id\" =\u003e 123, \"name\" =\u003e \"John Doe\"}], \"hearted\" =\u003e false,\n    \"hearts\" =\u003e [], \"id\" =\u003e 456,\n    \"memberships\" =\u003e [%{\"project\" =\u003e %{\"id\" =\u003e 456,\n         \"name\" =\u003e \"That Awesome Project\"}, \"section\" =\u003e nil}],\n    \"modified_at\" =\u003e \"2015-06-30T11:11:37.472Z\",\n    \"name\" =\u003e \"This is an example task\",\n    \"notes\" =\u003e \"Some really great descriptive notes\",\n    \"num_hearts\" =\u003e 0, \"parent\" =\u003e nil,\n    \"projects\" =\u003e [%{\"id\" =\u003e 456,\n       \"name\" =\u003e \"That Awesome Project\"}], \"tags\" =\u003e [],\n    \"workspace\" =\u003e %{\"id\" =\u003e 456, \"name\" =\u003e \"example.com\"}}}\n```\n\n## Contributing\n\nStart by forking this repo\n\nThen run this command to fetch dependencies and run tests:\n\n```console\nMIX_ENV=test mix do deps.get, test\n```\n\nPull requests are greatly appreciated\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrenpixster%2Fasanaficator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrenpixster%2Fasanaficator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrenpixster%2Fasanaficator/lists"}