{"id":21521330,"url":"https://github.com/web-slate/slack-app-clone-api","last_synced_at":"2025-04-09T22:21:54.113Z","repository":{"id":42234435,"uuid":"466977292","full_name":"web-slate/slack-app-clone-api","owner":"web-slate","description":"Slack App Clone API","archived":false,"fork":false,"pushed_at":"2022-05-09T16:43:36.000Z","size":43,"stargazers_count":3,"open_issues_count":1,"forks_count":3,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-24T00:15:17.624Z","etag":null,"topics":["postgresql","spring-boot","swagger"],"latest_commit_sha":null,"homepage":"https://slackclone001.herokuapp.com/swagger-ui/index.html","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/web-slate.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-07T06:53:21.000Z","updated_at":"2022-03-29T00:45:38.000Z","dependencies_parsed_at":"2022-08-28T10:20:27.211Z","dependency_job_id":null,"html_url":"https://github.com/web-slate/slack-app-clone-api","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web-slate%2Fslack-app-clone-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web-slate%2Fslack-app-clone-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web-slate%2Fslack-app-clone-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web-slate%2Fslack-app-clone-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/web-slate","download_url":"https://codeload.github.com/web-slate/slack-app-clone-api/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248120294,"owners_count":21050919,"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":["postgresql","spring-boot","swagger"],"created_at":"2024-11-24T01:06:53.807Z","updated_at":"2025-04-09T22:21:54.080Z","avatar_url":"https://github.com/web-slate.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Slack App Clone API in Java Spring Boot\n\n## Requirements\n\nFor building and running the application you need:\n\n- [JDK 11](https://www.oracle.com/be/java/technologies/javase/jdk11-archive-downloads.html)\n- [Maven 3](https://maven.apache.org)\n\n## Running the application locally\n\nThere are several ways to run a Spring Boot application on your local machine.\nOne way is to execute the `main` method in the `com.slack.slackcloneapi.SlackcloneapiApplication` class from your IDE.\n\nAlternatively you can use the [Spring Boot Maven plugin](https://docs.spring.io/spring-boot/docs/current/reference/html/build-tool-plugins-maven-plugin.html) like so:\n\n```shell\nmvn spring-boot:run\n\n# linkedin-clone-api\nLinkedin clone api in Spring Boot\n\nClone this project from GIT\n\n# Execution:\nStep 1: Open Terminal - mvn clean install\n\nStep 2: Open Terminal - mvn spring-boot:run\n\nStep 3: Accessing the application with below url.  \nhttp://localhost:8080/organization/1ae5241e-a51b-11ec-b909-0242ac120002\n\n## Following are the APIs provided\n- GET /organization/1ae5241e-a51b-11ec-b909-0242ac120002\n   ```js\n    {\n      \"organization_name\": \"Full Stack\",\n      \"organization_id\": \"1ae5241e-a51b-11ec-b909-0242ac120002\"\n    }\n   ```\n- GET /users\n  ```js\n   [{\n     \"username\": \"John\",\n     \"email\": \"john@gmail.com\",\n     \"user_id\": \"1e780ade-a524-11ec-b909-0242ac120002\"\n   },{\n     \"username\": \"Bob\",\n     \"email\": \"bob@gmail.com\",\n     \"user_id\": \"6ef005fc-a524-11ec-b909-0242ac120002\"\n   },{\n     \"username\": \"Alex\",\n     \"email\": \"alex@gmail.com\",\n     \"user_id\": \"7f093ecc-a524-11ec-b909-0242ac120002\"\n   }]\n  ```\n- POST /channel\n  ```js\n    {\n      \"channel_name\": \"slack\",\n      \"organization_id\": \"1ae5241e-a51b-11ec-b909-0242ac120002\",\n      \"description\": \"Slack channels\",\n      \"is_private\": true/false,\n      \"members\":[\"1e780ade-a524-11ec-b909-0242ac120002\",\"6ef005fc-a524-11ec-b909-0242ac120002\",\"7f093ecc-a524-11ec-b909-0242ac120002\"]\n    }\n   ```\n- GET /channel\n ```js\n    [{\n      \"channel_name\": \"general\",\n      \"channel_id\": \"4f0300c2-a51b-11ec-b909-0242ac120002\",\n      \"organization_id\": \"1ae5241e-a51b-11ec-b909-0242ac120002\",\n       \"description\": \"General channels\",\n      \"is_private\": true,\n       \"members\":[{\n      \"username\": \"John\",\n      \"email\": \"john@gmail.com\",\n      \"user_id\": \"1e780ade-a524-11ec-b909-0242ac120002\"\n    },{\n      \"username\": \"Bob\",\n      \"email\": \"bob@gmail.com\",\n      \"user_id\": \"6ef005fc-a524-11ec-b909-0242ac120002\"\n    },{\n      \"username\": \"Alex\",\n      \"email\": \"alex@gmail.com\",\n      \"user_id\": \"7f093ecc-a524-11ec-b909-0242ac120002\"\n    }]\n    }]\n   ```\n\n- GET /messages/4f0300c2-a51b-11ec-b909-0242ac120002/1ae5241e-a51b-11ec-b909-0242ac120002\n  /messages/\u003cchannel_id\u003e/\u003corganization_id\u003e\n ```js\n    [{\n      messages:[{\n           \"from\": {\n               \"username\": \"John\",\n               \"email\": \"john@gmail.com\",\n               \"user_id\": \"1e780ade-a524-11ec-b909-0242ac120002\"\n             },\n           \"message\":\"This is test message\",\n           \"datetime\":\"1647433741\"\n      }]\n    }]","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweb-slate%2Fslack-app-clone-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweb-slate%2Fslack-app-clone-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweb-slate%2Fslack-app-clone-api/lists"}