{"id":21480797,"url":"https://github.com/essentialkaos/go-crowd","last_synced_at":"2025-07-15T12:32:47.511Z","repository":{"id":34849538,"uuid":"143075640","full_name":"essentialkaos/go-crowd","owner":"essentialkaos","description":"Go package for working with Atlassian Crowd REST API","archived":false,"fork":false,"pushed_at":"2024-10-30T20:34:17.000Z","size":158,"stargazers_count":7,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-19T20:51:55.099Z","etag":null,"topics":["atlassian-crowd","crowd","golang"],"latest_commit_sha":null,"homepage":"https://kaos.sh/g/go-crowd.v3","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/essentialkaos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-31T22:18:45.000Z","updated_at":"2024-08-20T12:23:07.000Z","dependencies_parsed_at":"2024-06-03T12:32:23.094Z","dependency_job_id":"16fb9fc2-cf4a-4f7a-afb8-c82331584952","html_url":"https://github.com/essentialkaos/go-crowd","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/essentialkaos%2Fgo-crowd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/essentialkaos%2Fgo-crowd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/essentialkaos%2Fgo-crowd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/essentialkaos%2Fgo-crowd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/essentialkaos","download_url":"https://codeload.github.com/essentialkaos/go-crowd/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226038856,"owners_count":17564056,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["atlassian-crowd","crowd","golang"],"created_at":"2024-11-23T12:17:54.415Z","updated_at":"2025-07-15T12:32:47.503Z","avatar_url":"https://github.com/essentialkaos.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"#readme\"\u003e\u003cimg src=\".github/images/card.svg\"/\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://kaos.sh/g/go-crowd.v3\"\u003e\u003cimg src=\".github/images/godoc.svg\" alt=\"PkgGoDev\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://kaos.sh/r/go-crowd\"\u003e\u003cimg src=\"https://kaos.sh/r/go-crowd.svg\" alt=\"GoReportCard\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://kaos.sh/w/go-crowd/ci\"\u003e\u003cimg src=\"https://kaos.sh/w/go-crowd/ci.svg\" alt=\"GitHub Actions CI Status\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://kaos.sh/w/go-crowd/codeql\"\u003e\u003cimg src=\"https://kaos.sh/w/go-crowd/codeql.svg\" alt=\"GitHub Actions CodeQL Status\" /\u003e\u003c/a\u003e\n  \u003ca href=\"#license\"\u003e\u003cimg src=\".github/images/license.svg\"/\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003ca href=\"#usage-example\"\u003eUsage example\u003c/a\u003e • \u003ca href=\"#ci-status\"\u003eCI Status\u003c/a\u003e • \u003ca href=\"#license\"\u003eLicense\u003c/a\u003e\u003c/p\u003e\n\n\u003cbr/\u003e\n\n`go-crowd` is a Go package for working with [Crowd REST API](https://developer.atlassian.com/server/crowd/crowd-rest-resources/).\n\n\u003e [!IMPORTANT]\n\u003e **Please note that this package only supports retrieving data from the Crowd API (_i.e. you cannot create or modify data with this package_).**\n\n### Usage example\n\n```go\npackage main\n\nimport (\n  \"fmt\"\n  \"github.com/essentialkaos/go-crowd/v3\"\n)\n\nfunc main() {\n  api, err := crowd.NewAPI(\"https://crowd.domain.com/crowd/\", \"myapp\", \"MySuppaPAssWOrd\")\n\n  if err != nil {\n    fmt.Printf(\"Error: %v\\n\", err)\n    return\n  }\n\n  api.SetUserAgent(\"MyApp\", \"1.2.3\")\n\n  user, err := api.GetUser(\"john\", true)\n\n  if err != nil {\n    fmt.Printf(\"Error: %v\\n\", err)\n    return\n  }\n\n  fmt.Printf(\"%#v\\n\", user)\n}\n```\n\n### CI Status\n\n| Branch     | Status |\n|------------|--------|\n| `master` (_Stable_) | [![CI](https://kaos.sh/w/go-crowd/ci.svg?branch=master)](https://kaos.sh/w/go-crowd/ci?query=branch:master) |\n| `develop` (_Unstable_) | [![CI](https://kaos.sh/w/go-crowd/ci.svg?branch=develop)](https://kaos.sh/w/go-crowd/ci?query=branch:develop) |\n\n### Contributing\n\nBefore contributing to this project please read our [Contributing Guidelines](https://github.com/essentialkaos/.github/blob/master/CONTRIBUTING.md).\n\n### License\n\n[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)\n\n\u003cp align=\"center\"\u003e\u003ca href=\"https://kaos.dev\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/essentialkaos/.github/refs/heads/master/images/ekgh.svg\"/\u003e\u003c/a\u003e\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fessentialkaos%2Fgo-crowd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fessentialkaos%2Fgo-crowd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fessentialkaos%2Fgo-crowd/lists"}