{"id":22309091,"url":"https://github.com/yevrag35/ad-restapi","last_synced_at":"2025-07-29T06:31:33.983Z","repository":{"id":41872605,"uuid":"395476208","full_name":"Yevrag35/AD-RestAPI","owner":"Yevrag35","description":"A standalone REST API built on .NET 6 for querying and managing Active Directory.","archived":false,"fork":false,"pushed_at":"2024-08-16T14:32:12.000Z","size":1240,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-05T09:03:01.766Z","etag":null,"topics":["activedirectory","aspnetcore","csharp","rest-api"],"latest_commit_sha":null,"homepage":"","language":"C#","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/Yevrag35.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":"2021-08-13T00:24:07.000Z","updated_at":"2024-06-09T16:25:28.000Z","dependencies_parsed_at":"2024-06-27T18:47:05.569Z","dependency_job_id":"e015bc56-4ba4-4e1a-aaa4-311f4b8707c3","html_url":"https://github.com/Yevrag35/AD-RestAPI","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Yevrag35/AD-RestAPI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yevrag35%2FAD-RestAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yevrag35%2FAD-RestAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yevrag35%2FAD-RestAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yevrag35%2FAD-RestAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Yevrag35","download_url":"https://codeload.github.com/Yevrag35/AD-RestAPI/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yevrag35%2FAD-RestAPI/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267639569,"owners_count":24119780,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"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":["activedirectory","aspnetcore","csharp","rest-api"],"created_at":"2024-12-03T20:16:52.542Z","updated_at":"2025-07-29T06:31:33.604Z","avatar_url":"https://github.com/Yevrag35.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AD-RestAPI\nA standalone REST API built on .NET 6 for querying and managing Active Directory.  Although, because of certain operations, the API can only be hosted on a Windows platform.\n\n* [__Walkthroughs__](/Walkthroughs)\n\n__* Work in Progress *__\n\nSee the [__WIKI__](https://github.com/Yevrag35/AD-RestAPI/wiki) for details about each operation.\n\n## [Authentication](/Walkthroughs/Authentication)\n\nBy default, the project will use __Windows Authentication__, and it is highly recommended to [set up the application to use Kerberos/Negotiate](/Walkthroughs/Authentication/Negotiate-NTLM-Kerberos) to be as secure as possible.\nI'm planning on baking in some options as well as creating walkthroughs for leveraging other authentication schemes (e.g. - AzureAD, custom JSON web tokens, etc.).\n\n## Update 4/24/22\n\nThe following endpoints have been created:\n\n| Endpoint       | Rest Method(s)   | For AD ObjectClass\n| ---------------- | ---------------- | ----------------- |\n| [/create/group](https://github.com/Yevrag35/AD-RestAPI/wiki/Group-Create)    | POST             | group\n| [/create/ou](https://github.com/Yevrag35/AD-RestAPI/wiki/OU-Create)       | POST             | organizationalUnit\n| [/create/user](https://github.com/Yevrag35/AD-RestAPI/wiki/User-Create)     | POST             | user\n| [/delete](https://github.com/Yevrag35/AD-RestAPI/wiki/Endpoints#delete)          | DELETE           | \\*ANY\\*\n| [/edit](https://github.com/Yevrag35/AD-RestAPI/wiki/Endpoints#edit)            | PUT              | \\*ANY\\*\n| [/move](https://github.com/Yevrag35/AD-RestAPI/wiki/Endpoints#move)            | POST              | \\*ANY\\*\n| [/password/change](https://github.com/Yevrag35/AD-RestAPI/wiki/Password-Change) | PUT              | user\n| [/password/reset](https://github.com/Yevrag35/AD-RestAPI/wiki/Password-Reset)  | PUT              | user\n| [/rename](https://github.com/Yevrag35/AD-RestAPI/wiki/Endpoints#rename)          | PUT              | \\*ANY\\*\n| [/search](https://github.com/Yevrag35/AD-RestAPI/wiki/Generic-Search)          | GET, POST        | \\*ANY\\*\n| [/search/computer](https://github.com/Yevrag35/AD-RestAPI/wiki/Computer-Query) | GET, POST        | computer\n| [/search/group](https://github.com/Yevrag35/AD-RestAPI/wiki/Group-Query)    | GET, POST        | group\n| [/search/user](https://github.com/Yevrag35/AD-RestAPI/wiki/User-Query)     | GET, POST        | user","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyevrag35%2Fad-restapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyevrag35%2Fad-restapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyevrag35%2Fad-restapi/lists"}