{"id":21851899,"url":"https://github.com/ulbora/ulboracustomerservice","last_synced_at":"2026-05-16T17:03:54.036Z","repository":{"id":87394616,"uuid":"89883302","full_name":"Ulbora/ulboraCustomerService","owner":"Ulbora","description":"A customer micro service","archived":false,"fork":false,"pushed_at":"2018-06-09T17:57:11.000Z","size":58,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-29T17:45:48.413Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ulbora.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":"2017-04-30T23:25:30.000Z","updated_at":"2018-06-09T17:57:12.000Z","dependencies_parsed_at":"2023-06-25T23:48:58.263Z","dependency_job_id":null,"html_url":"https://github.com/Ulbora/ulboraCustomerService","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ulbora/ulboraCustomerService","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ulbora%2FulboraCustomerService","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ulbora%2FulboraCustomerService/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ulbora%2FulboraCustomerService/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ulbora%2FulboraCustomerService/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ulbora","download_url":"https://codeload.github.com/Ulbora/ulboraCustomerService/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ulbora%2FulboraCustomerService/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33111497,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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-11-28T01:12:11.994Z","updated_at":"2026-05-16T17:03:53.998Z","avatar_url":"https://github.com/Ulbora.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Ulbora Customer Service \n==============\n\nA Customer Micro Service\n\n\n## Headers\nContent-Type: application/json (for POST and PUT)\nAuthorization: Bearer atToken\nclientId: clientId (example 33477)\n\n\n## Add Customer\n\n```\nPOST:\nURL: http://localhost:3004/rs/customer/add\n\nExample Request\n{\n   \"firstName\":\"rod\",\n   \"lastName\":\"Johnson\",\n   \"company\":\"big data\",\n   \"primaryPhone\":\"1254567890\",\n   \"secondPhone\":\"\",\n   \"emailAddress\":\"bobby50@bob.com\"\n}\n  \n```\n\n```\nExample Response   \n\n{\n  \"success\": true,\n  \"id\": 176,\n  \"clientId\": \"403\",\n  \"message\": \"\"\n}\n\n```\n\n## Update Customer\n\n```\nPUT:\nURL: http://localhost:3004/rs/customer/update\n\nExample Request\n{\n   \"firstName\":\"Ken\",\n   \"lastName\":\"Williamson\",\n   \"company\":\"big data\",\n   \"primaryPhone\":\"1254567890\",\n   \"secondPhone\":\"\",\n   \"emailAddress\":\"bobby50@bob.com\"\n}\n  \n```\n\n```\nExample Response   \n\n{\n  \"success\": true,\n  \"message\": \"\"\n}\n\n```\n\n## Get Customer\n\n```\nGET:\nURL: http://localhost:3004/rs/customer/get/bobby50@bob.com\n  \n```\n\n```\nExample Response   \n\n{\n  \"firstName\": \"rod\",\n  \"lastName\": \"Johnson\",\n  \"company\": \"big data\",\n  \"primaryPhone\": \"1254567890\",\n  \"secondPhone\": \"\",\n  \"dateEntered\": \"2017-06-11T04:00:00.000Z\",\n  \"dateModified\": null,\n  \"emailAddress\": \"bobby50@bob.com\",\n  \"clientId\": 403\n}\n\n```\n\n\n## Get Customer List by client id\n\n```\nPOST:\nURL: http://localhost:3004/rs/customer/list\n\nExample Request\n{  \n   \"clientId\":\"403\"\n}\n  \n```\n\n```\nExample Response   \n\n[\n  {\n    \"firstName\": \"rod\",\n    \"lastName\": \"Johnson\",\n    \"company\": \"big data\",\n    \"primaryPhone\": \"1254567890\",\n    \"secondPhone\": \"\",\n    \"dateEntered\": \"2017-06-11T04:00:00.000Z\",\n    \"dateModified\": null,\n    \"emailAddress\": \"bobby50@bob.com\"\n  }\n]\n\n```\n\n\n\n\n## Get List of Customer All\n\n```\nGET:\nURL: http://localhost:3004/rs/customer/list\n\n  \n```\n\n```\nExample Response   \n\n[\n  {\n    \"firstName\": \"rod\",\n    \"lastName\": \"Johnson\",\n    \"company\": \"big data\",\n    \"primaryPhone\": \"1254567890\",\n    \"secondPhone\": \"\",\n    \"dateEntered\": \"2017-06-11T04:00:00.000Z\",\n    \"dateModified\": null,\n    \"emailAddress\": \"bobby50@bob.com\"\n  }\n]\n\n```\n\n## Delete Customer\n\n```\nDELETE:\nURL: http://localhost:3004/rs/customer/delete/bobby50@bob3.com\n  \n```\n\n```\nExample Response   \n\n{\n  \"success\": true,\n  \"message\": \"\"\n}\n\n```\n\n\n\n## Add Customer Address\n\n```\nPOST:\nURL: http://localhost:3004/rs/address/add\n\nExample Request\n{\n   \"address1\":\"125 river rd\",\n   \"address2\":\"\",\n   \"city\":\"big valley\",\n   \"state\":\"CA\",\n   \"zip\":\"12345\",\n   \"zipExt\":\"1234\",\n   \"country\":\"USA\",\n   \"emailAddress\":\"bobby50@bob.com\"\n}\n  \n```\n\n```\nExample Response   \n\n{\n  \"success\": true,\n  \"id\": 49,\n  \"message\": \"\"\n}\n\n```\n\n\n## Update Customer Address\n\n```\nPUT:\nURL: http://localhost:3004/rs/address/update\n\nExample Request\n{\n   \"address1\":\"1255 river rd\",\n   \"address2\":\"\",\n   \"city\":\"big valley\",\n   \"state\":\"CA\",\n   \"zip\":\"12345\",\n   \"zipExt\":\"1234\",\n   \"country\":\"USA\",\n   \"id\":49,\n   \"emailAddress\": \"bobby50@bob.com\"\n   \n}\n  \n```\n\n```\nExample Response   \n\n{\n  \"success\": true,\n  \"message\": \"\"\n}\n\n```\n\n\n## Get Customer Address\n\n```\nGET:\nURL: http://localhost:3004/rs/address/get/49/bobby50@bob.com\n  \n```\n\n```\nExample Response   \n\n{\n  \"id\": 49,\n  \"address1\": \"1255 river rd\",\n  \"address2\": \"\",\n  \"city\": \"big valley\",\n  \"state\": \"CA\",\n  \"zip\": \"12345\",\n  \"zipExt\": \"1234\",\n  \"country\": \"USA\",\n  \"emailAddress\": \"bobby50@bob.com\"\n}\n\n```\n\n\n\n## Get Customer Address List \n\n```\nPOST:\nURL: http://localhost:3004/rs/address/list\n\nExample Request\n{\n   \"email\":\"bobby50@bob.com\"\n}\n  \n```\n\n```\nExample Response   \n\n[\n  {\n    \"id\": 49,\n    \"address1\": \"1255 river rd\",\n    \"address2\": \"\",\n    \"city\": \"big valley\",\n    \"state\": \"CA\",\n    \"zip\": \"12345\",\n    \"zipExt\": \"1234\",\n    \"country\": \"USA\",\n    \"emailAddress\": \"bobby50@bob.com\",\n    \"clientId\": 403\n  }\n]\n\n```\n\n\n## Delete Customer Address\n\n```\nDELETE:\nURL: http://localhost:3004/rs/address/delete/49/bobby50@bob.com\n  \n```\n\n```\nExample Response   \n\n{\n  \"success\": true,\n  \"message\": \"\"\n}\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fulbora%2Fulboracustomerservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fulbora%2Fulboracustomerservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fulbora%2Fulboracustomerservice/lists"}