Questions tagged [easypost]

EasyPost is an API that lets you add shipping to any application.

EasyPost is an API that lets you add shipping to any application. The API supports shipping with USPS, UPS, FedEx, DHL, and more. With EasyPost you can:

  • Create shipping labels
  • Get realtime shipping rates
  • Track packages
  • Verify addresses
  • Generate customs forms
  • Create batches of shipping labels
  • And much much more
56 questions
0
votes
1 answer

How to create loop within a JSON request object?

I need to create multiple "items" to be used within a json request . Here's a request that works: customs_info = EasyPost::CustomsInfo.create( eel_pfc: 'NOEEI 30.37(a)', customs_certify: true, customs_signer: "first_name…
uno
  • 1,421
  • 12
  • 38
0
votes
1 answer

EasyPost : Unable to create manifest. 5 of the specified shipments have already been manifested:

While creating ScanForm EasyPost returns following error. How can I identify if Shipment is manifested or Can't be manifested. Unable to create manifest. 5 of the specified shipments have already been manifested: shp_aa, shp_xxx, shp_yy, shp_vv,…
Manjay_TBAG
  • 2,176
  • 3
  • 23
  • 43
0
votes
1 answer

How to verify multiple addresses using EasyPost

Is there any possibility to verify multiple addresses using EasyPost "verify address" API? Batch object doesn't work as expected and "verify address" API accepts single address. To be more precise, I want to send one request with multiple addresses…
viciousP
  • 510
  • 3
  • 14
0
votes
2 answers

How to pass multiple parameters using the Easy Post API

I am working with the Easy Post API (Node.js) and I am able to trigger the API to call and respond with a single tracking number. How do I run multiple tracking numbers through the API? All help is greatly appreciated. Node.js …
The1987
  • 45
  • 4
  • 12
0
votes
1 answer

EasyPost Create Webhook returns null

I tried to create an easy post webhook using easy post in asp.net core API project. it returns a null value in webhook creations. i tried this using EasyPost; EasyPost.ClientManager.SetCurrent(""); Webhook webhook…
Anbu sam
  • 1
  • 1
0
votes
1 answer

Easypost - Updating 'OPTIONS' after creating Shipment and before buying label

I am using Easypost and creating the shipment by passing from_address, to_address, parcel, customs_info, carrier_accounts, options. The shipment got created successfully. And at the time of buying the label(of this shipment), I would like to include…
Lalith kumar
  • 103
  • 1
  • 6
0
votes
1 answer

get rate for a temporary shipment

I am trying to use easy post API and I would like to get shipment quote without creating then? (temorary shipment). Idea is customer wants to have a shipment quote but he have no take decision to buy then and maybe he will buy then with another…
SSA
  • 11
  • 2
0
votes
1 answer

fatal error: Uncaught EasyPost woo trade in

Fatal error: Uncaught EasyPost\Error: Unable to complete shipment purchase. Please contact support@easypost.com. in /home/adminofferzone/offerzoneusa.com/wp-content/plugins/woo-ship-labels-master/EasyPost/lib/EasyPost/Requestor.php:268 Stack trace:…
Shenald
  • 143
  • 1
  • 12
0
votes
1 answer

Easypost shipment tracking issue

I have been testing out the shipment tracking and I am getting info through my controller. However when I add a line of javascript code somewhere else the tracking always return unknown. I am not sure if the tracking is correct and unknown is always…
Nello
  • 1,737
  • 3
  • 17
  • 24
0
votes
1 answer

How to get the rate of a specific service - EasyPost ruby?

Trying to retrieve shipping rates for India Post but do not know how. I'm following the Getting Started guide. to_address = EasyPost::Address.create( :name => 'Dr. Steve Brule', :street1 => 'Ravindra Nath Tagore Marg', :city => 'Nagpur', …
djsmentya
  • 315
  • 1
  • 12
0
votes
1 answer

C# add values to a Dictionary using a loop

I'm using EasyPost(shipping API) to get shipping rates. I'm able to hard code the shipments but that doesn't help me. I need to add data based on what the user selects. Below is the code I have. As you can see I have two shipments that are currently…
Matt H.
  • 5
  • 1
  • 4
0
votes
3 answers

Getting the rate of a specific service - EasyPost

I currently have EasyPost creating a shipment. When I create the shipment it provides me with all the available services and rates. I would like to dynamically select service and only return that rate. I originally would read through the array…
0
votes
1 answer

Execute curl command in scala to get shipping charges from easypost API

I am trying execute a curl command in scala. The curl command fetched the shipping charges from easypost API. Below is the code I am using : import sys.process._ val data="curl -X POST https://api.easypost.com/v2/shipments -u
Ishan
  • 996
  • 3
  • 13
  • 34
0
votes
2 answers

Easypost in scala

I am trying to get shipping charges from user location to a warehouse location by providing only their zip codes. I've to implement it in scala so I am trying to use their Java API. Below is the code I am using - var…
Ishan
  • 996
  • 3
  • 13
  • 34
0
votes
1 answer

Static Fields - EasyPost - ClientManager Init

I am currently having a problem when it comes to static fields in C#, the problem is in the way EasyPost instantiates their ClientManger however, I think someone with a better understanding regarding static fields might be able to help me. I am…