{"id":20661389,"url":"https://github.com/erlangbureau/enexmo","last_synced_at":"2026-05-27T21:31:49.323Z","repository":{"id":72282764,"uuid":"70009861","full_name":"erlangbureau/enexmo","owner":"erlangbureau","description":"Nexmo REST API client for Erlang","archived":false,"fork":false,"pushed_at":"2016-10-04T23:06:31.000Z","size":52,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-10T04:46:22.979Z","etag":null,"topics":["erlang","nexmo"],"latest_commit_sha":null,"homepage":null,"language":"Erlang","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/erlangbureau.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":"2016-10-04T21:57:50.000Z","updated_at":"2019-03-16T16:22:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"9e961534-a55a-4ee9-a74a-d0c163aead36","html_url":"https://github.com/erlangbureau/enexmo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/erlangbureau/enexmo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erlangbureau%2Fenexmo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erlangbureau%2Fenexmo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erlangbureau%2Fenexmo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erlangbureau%2Fenexmo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erlangbureau","download_url":"https://codeload.github.com/erlangbureau/enexmo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erlangbureau%2Fenexmo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33585203,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"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":["erlang","nexmo"],"created_at":"2024-11-16T19:09:15.202Z","updated_at":"2026-05-27T21:31:49.295Z","avatar_url":"https://github.com/erlangbureau.png","language":"Erlang","funding_links":[],"categories":[],"sub_categories":[],"readme":"Nexmo Client Library for Erlang\n===============================\n\nUsage\n-----\n\nBegin by starting the nexmo app:\n\n```erl\n1\u003e application:ensure_all_started(enexmo).\n{ok,[crypto,asn1,public_key,ssl,inets,jsx,enexmo]}\n```\n\nThen register a chanel with your key and secret:\n\n```erl\n2\u003e enexmo:create_channel(test, [{api_key, \"api_key\"}, {api_secret, \"api_secret\"}]).\nok\n```\n\nFor newer endpoints that support JWT authentication such as the Voice API,\nyou can also specify the `application_id` and `private_key` arguments:\n\n```erl\n2\u003e enexmo:create_channel(test, [{api_key, \"api_key\"}, {api_secret, \"api_secret\"}, {application_id, \"application_id\"}, {private_key, \"private_key\"}]).\nok\n```\n\n\n## SMS API\n\n### Send a text message\n\n```erl\n3\u003e enexmo:send_message(test, \"Nexmo\", \"380920000911\", \"test msg\").\n{error,{server_error,\u003c\u003c\"29\"\u003e\u003e,\n               \u003c\u003c\"Non White-listed Destination - rejected\"\u003e\u003e}}\n```\n\nDocs: [https://docs.nexmo.com/messaging/sms-api/api-reference#request](https://docs.nexmo.com/messaging/sms-api/api-reference#request?utm_source=DEV_REL\u0026utm_medium=github\u0026utm_campaign=erlang-client-library)\n\n## Verify API\n\n### Start a verification\n\n```erl\n4\u003e enexmo:start_verification(test, \"380920000911\", \"Nexmo\").\n{ok,[{\u003c\u003c\"request_id\"\u003e\u003e,\n      \u003c\u003c\"37735891af52435292616476fdc7e4ae\"\u003e\u003e},\n     {\u003c\u003c\"status\"\u003e\u003e,\u003c\u003c\"0\"\u003e\u003e}]}\n```\n\nDocs: [https://docs.nexmo.com/verify/api-reference/api-reference#vrequest](https://docs.nexmo.com/verify/api-reference/api-reference#vrequest?utm_source=DEV_REL\u0026utm_medium=github\u0026utm_campaign=erlang-client-library)\n\nThe response contains a verification request id which you will need to\nstore temporarily (in the session, database, url etc).\n\n### Check a verification\n\n```erl\n5\u003e enexmo:check_verification(test, \"37735891af52435292616476fdc7e4ae\", \"3100\").\n{ok,[{\u003c\u003c\"request_id\"\u003e\u003e,\n      \u003c\u003c\"37735891af52435292616476fdc7e4ae\"\u003e\u003e},\n     {\u003c\u003c\"status\"\u003e\u003e,\u003c\u003c\"0\"\u003e\u003e},\n     {\u003c\u003c\"event_id\"\u003e\u003e,\u003c\u003c\"070000000F65C3CB\"\u003e\u003e},\n     {\u003c\u003c\"price\"\u003e\u003e,\u003c\u003c\"0.10000000\"\u003e\u003e},\n     {\u003c\u003c\"currency\"\u003e\u003e,\u003c\u003c\"EUR\"\u003e\u003e}]}\n```\n\nDocs: [https://docs.nexmo.com/verify/api-reference/api-reference#check](https://docs.nexmo.com/verify/api-reference/api-reference#check?utm_source=DEV_REL\u0026utm_medium=github\u0026utm_campaign=erlang-client-library)\n\nThe verification request id comes from the call to the start_verification method.\nThe PIN code is entered into your application by the user.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferlangbureau%2Fenexmo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferlangbureau%2Fenexmo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferlangbureau%2Fenexmo/lists"}