Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aftership-tracking-sdk

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aftership-tracking-sdk

  • 9.0.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

AfterShip Tracking API library for Ruby

This library allows you to quickly and easily use the AfterShip Tracking API via Ruby.

For updates to this library, see our GitHub release page.

If you need support using AfterShip products, please contact support@aftership.com.

Table of Contents

Before you begin

Before you begin to integrate:

API and SDK Version

Each SDK version is designed to work with a specific API version. Please refer to the table below to identify the supported API versions for each SDK version, ensuring you select the appropriate SDK version for the API version you intend to use.

SDK VersionSupported API VersionBranch
9.x.x2024-10https://github.com/AfterShip/tracking-sdk-ruby/tree/2024-10
8.x.x2024-07https://github.com/AfterShip/tracking-sdk-ruby/tree/2024-07
7.x.x2024-04https://github.com/AfterShip/tracking-sdk-ruby/tree/2024-04
<=6.x.xLegacy APIhttps://github.com/AfterShip/aftership-sdk-ruby

Quick Start

Installation

gem install aftership-tracking-sdk

Or add a line to your Gemfile

gem 'aftership-tracking-sdk', '~> 9.0.0'

Constructor

Create AfterShip instance with options

NameTypeRequiredDescription
api_keystringYour AfterShip API key
auth_typeenumDefault value: AuthType.API_KEY
AES authentication: AuthType.AES
RSA authentication: AuthType.RSA
api_secretstringRequired if the authentication type is AuthType.AES or AuthType.RSA
domainstringAfterShip API domain. Default value: https://api.aftership.com
user_agentstringUser-defined user-agent string, please follow RFC9110 format standard.
proxystringHTTP proxy URL to use for requests.
Default value: null
Example: http://192.168.0.100:8888
max_retrynumberNumber of retries for each request. Default value: 2. Min is 0, Max is 10.
timeoutnumberTimeout for each request in milliseconds.

Example

require 'aftership-tracking-sdk'

AftershipAPI.configure do |config|
	config.as_api_key = "YOUR_API_KEY"
end

begin
	resp = AftershipAPI::Tracking.get_trackings
	p resp
rescue AftershipAPI::ApiError => e
	p e.message
end

Rate Limiter

See the Rate Limit to understand the AfterShip rate limit policy.

Error Handling

The SDK will return an error object when there is any error during the request, with the following specification:

NameTypeDescription
messagestringDetail message of the error
codeenumError code enum for API Error.
meta_codenumberAPI response meta code.
status_codenumberHTTP status code.
response_bodystringAPI response body.

Error List

codemeta_codestatus_codemessage
INVALID_REQUEST400400The request was invalid or cannot be otherwise served.
INVALID_JSON4001400Invalid JSON data.
TRACKING_ALREADY_EXIST4003400Tracking already exists.
TRACKING_DOES_NOT_EXIST4004404Tracking does not exist.
TRACKING_NUMBER_INVALID4005400The value of tracking_number is invalid.
TRACKING_REQUIRED4006400tracking object is required.
TRACKING_NUMBER_REQUIRED4007400tracking_number is required.
VALUE_INVALID4008400The value of [field_name] is invalid.
VALUE_REQUIRED4009400[field_name] is required.
SLUG_INVALID4010400The value of slug is invalid.
MISSING_OR_INVALID_REQUIRED_FIELD4011400Missing or invalid value of the required fields for this courier. Besides tracking_number, also required: [field_name]
BAD_COURIER4012400The error message will be one of the following:
1. Unable to import shipment as the carrier is not on your approved list for carrier auto-detection. Add the carrier here: https://admin.aftership.com/settings/couriers
2. Unable to import shipment as we don’t recognize the carrier from this tracking number.
3. Unable to import shipment as the tracking number has an invalid format.
4. Unable to import shipment as this carrier is no longer supported.
5. Unable to import shipment as the tracking number does not belong to a carrier in that group.
INACTIVE_RETRACK_NOT_ALLOWED4013400Retrack is not allowed. You can only retrack an inactive tracking.
NOTIFICATION_REUQIRED4014400notification object is required.
ID_INVALID4015400The value of id is invalid.
RETRACK_ONCE_ALLOWED4016400Retrack is not allowed. You can only retrack each shipment once.
TRACKING_NUMBER_FORMAT_INVALID4017400The format of tracking_number is invalid.
API_KEY_INVALID401401The API key is invalid.
REQUEST_NOT_ALLOWED403403The request is understood, but it has been refused or access is not allowed.
NOT_FOUND404404The URI requested is invalid or the resource requested does not exist.
TOO_MANY_REQUEST429429You have exceeded the API call rate limit. The default limit is 10 requests per second.
INTERNAL_ERROR500 502 503 504500 502 503 504Something went wrong on AfterShip's end.

Endpoints

The AfterShip instance has the following properties which are exactly the same as the API endpoints:

  • courier - Get a list of our supported couriers.
  • tracking - Create trackings, update trackings, and get tracking results.
  • estimated-delivery-date - Get estimated delivery date for your order.

/trackings

POST /trackings

begin
	req = AftershipAPI::Model::CreateTrackingRequest. new
	req.tracking_number = "<tracking_number>"
	req.slug = "<slug>"

	resp = AftershipAPI::Tracking.create_tracking(body: req)
	p resp
rescue AftershipAPI::ApiError => e
	p e.message
end

DELETE /trackings/:id

resp = AftershipAPI::Tracking.delete_tracking_by_id(id: "<tracking_id>")
p resp.to_json

GET /trackings

resp = AftershipAPI::Tracking.get_trackings(opts: {keyword: "123"})
p resp.to_json

GET /trackings/:id

resp = AftershipAPI::Tracking.get_tracking_by_id(id: "<tracking_id>")
p resp.to_json

PUT /trackings/:id

req = AftershipAPI::Model::UpdateTrackingByIdRequest.new
req.note = "test update"
resp = AftershipAPI::Tracking.update_tracking_by_id(id: "<tracking_id>", body: req)
p resp.to_json

POST /trackings/:id/retrack

resp = AftershipAPI::Tracking.retrack_tracking_by_id(id: "<tracking_id>")
p resp.to_json

POST /trackings/:id/mark-as-completed

req = AftershipAPI::Model::MarkTrackingCompletedByIdRequest.new
req.reason = "DELIVERED"
resp = AftershipAPI::Tracking.mark_tracking_completed_by_id(id: "<tracking_id>", body: req)
p resp.to_json

/couriers

GET /couriers

resp = AftershipAPI::Courier.get_user_couriers()
p resp.to_json

GET /couriers/all

resp = AftershipAPI::Courier.get_all_couriers()
p resp.to_json

POST /couriers/detect

req = AftershipAPI::Model::DetectCourierRequest.new
req.tracking_number = "<tracking_number>"
resp = AftershipAPI::Courier.detect_courier(body: req)
p resp.to_json

/estimated-delivery-date

POST /estimated-delivery-date/predict-batch

edd = AftershipAPI::Model::EstimatedDeliveryDateRequest.new
edd.slug = "<slug>"
edd.pickup_time = "2024-08-01 06:42:30"
origin = AftershipAPI::Model::OriginAddressEstimatedDeliveryDateRequest.new
origin.country = "<ISO 3166-1 country/region code>"
origin.state = "<ISO 3166-1 country/region code>"

dest = AftershipAPI::Model::DestinationAddressEstimatedDeliveryDateRequest.new
dest.country = "<ISO 3166-1 country/region code>"
dest.state = "<ISO 3166-1 country/region code>"

edd.origin_address = origin
edd.destination_address = dest

req = AftershipAPI::Model::PredictBatchRequest.new
req.estimated_delivery_dates = [edd]
resp = AftershipAPI::EstimatedDeliveryDate.predict_batch(body: req)
p resp.to_json

Help

If you get stuck, we're here to help:

  • Issue Tracker for questions, feature requests, bug reports and general discussion related to this package. Try searching before you create a new issue.
  • Contact AfterShip official support via support@aftership.com

License

Copyright (c) 2024 AfterShip

Licensed under the MIT license.

FAQs

Package last updated on 25 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc