{"id":20086986,"url":"https://github.com/postmen/postmen-sdk-ruby","last_synced_at":"2025-10-10T10:39:19.320Z","repository":{"id":34655031,"uuid":"38624661","full_name":"postmen/postmen-sdk-ruby","owner":"postmen","description":"AfterShip Shipping (Postmen) API Client Library for Ruby (USPS, FedEx, UPS, DHL and more)","archived":false,"fork":false,"pushed_at":"2017-03-30T19:25:36.000Z","size":79,"stargazers_count":7,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-05T10:47:54.682Z","etag":null,"topics":["aftership","api","api-client","postmen","ruby","sdk","shipping","shipping-api"],"latest_commit_sha":null,"homepage":"https://www.aftership.com/postmen","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/postmen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-06T14:40:27.000Z","updated_at":"2022-12-16T14:56:00.000Z","dependencies_parsed_at":"2022-09-09T04:01:26.757Z","dependency_job_id":null,"html_url":"https://github.com/postmen/postmen-sdk-ruby","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/postmen/postmen-sdk-ruby","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postmen%2Fpostmen-sdk-ruby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postmen%2Fpostmen-sdk-ruby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postmen%2Fpostmen-sdk-ruby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postmen%2Fpostmen-sdk-ruby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/postmen","download_url":"https://codeload.github.com/postmen/postmen-sdk-ruby/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postmen%2Fpostmen-sdk-ruby/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279003545,"owners_count":26083595,"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-10-10T02:00:06.843Z","response_time":62,"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":["aftership","api","api-client","postmen","ruby","sdk","shipping","shipping-api"],"created_at":"2024-11-13T16:03:29.543Z","updated_at":"2025-10-10T10:39:19.290Z","avatar_url":"https://github.com/postmen.png","language":"Ruby","readme":"## postmen-ruby\n\n[![Build Status](https://travis-ci.org/postmen/postmen-sdk-ruby.svg?branch=master)](https://travis-ci.org/postmen/postmen-sdk-ruby)\n[![Code Climate](https://codeclimate.com/github/postmen/postmen-sdk-ruby/badges/gpa.svg)](https://codeclimate.com/github/postmen/postmen-sdk-ruby)\n[![Gem Version](https://badge.fury.io/rb/postmen.svg)](https://badge.fury.io/rb/postmen)\n[![Dependency Status](https://gemnasium.com/badges/github.com/postmen/postmen-sdk-ruby.svg)](https://gemnasium.com/github.com/postmen/postmen-sdk-ruby)\n[![Coverage Status](https://coveralls.io/repos/github/postmen/postmen-sdk-ruby/badge.svg?branch=master)](https://coveralls.io/github/postmen/postmen-sdk-ruby?branch=master)\n[![Documentation status](https://inch-ci.org/github/postmen/postmen-sdk-ruby.svg?branch=master)](https://inch-ci.org/github/postmen/postmen-sdk-ruby)\n\n\nRuby Gem for Postmen API.\n\nThis extension helps developers to integrate with Postmen easily.\n\n## Resources\n\n- \u003ca href=\"https://docs.postmen.com\"\u003e API documentation/overview\u003c/a\u003e\n- \u003ca href=\"https://github.com/krzyzak/postmen-example-app/\"\u003e Example App\u003c/a\u003e\n- \u003ca href=\"http://www.rubydoc.info/github/postmen/postmen-sdk-ruby\"\u003eRuby technical documentation\u003c/a\u003e\n\n\n## Installation\n\n1. Add the following line to your application's Gemfile\n\n    ```\n    gem 'postmen', '~\u003e 1.0'\n    ```\n\n2. Run bundler\n\n    ```\n    bundle install\n    ```\n\n## Configuration\n\n```ruby\n\nPostmen.configure do |config|\n  config.region = 'sandbox' # set 'sandbox' or 'production. Required\n  config.api_key = 'YOUR API KEY' # Required\n  config.endpoint = 'http://my-custom-endpoint.example.com' # Optionally set custom endpoint url.\nend\n\n```\n\n## Getting started\n\n```ruby\nrequire 'postmen'\n\n# Setup your postmen account (https://postmen.com), obtain an API key.\n# Configure Postmen, see Configuration section\n\n### Fetch all labels:\n\nPostmen::Label.all # Returns an instance of Postmen::LabelCollection\n\n# optionally you can pass additional params to the query:\n\nPostmen::Label.all(shipper_account_id: '1111')\nPostmen::Label.all(status: 'created')\n# For more options, please see the documentation: https://docs.postmen.com/api.html#labels-list-all-labels\n\n### Fetch single label\n\nPostmen::Label.find('1111') # Returns an instance of Postmen::Label\n```\n\n## The License (MIT)\n\nReleased under the MIT license. See the LICENSE file for the complete wording.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpostmen%2Fpostmen-sdk-ruby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpostmen%2Fpostmen-sdk-ruby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpostmen%2Fpostmen-sdk-ruby/lists"}