# Veho Wallet Guide

Veho is a last-mile delivery and returns service carrier with limited service in the United States.

EasyPost supports Veho through two account options:

- **Veho Wallet:** Use Veho through an EasyPost Wallet without establishing a separate billing relationship with Veho. Shipment charges are billed through EasyPost.
- **Veho BYOCA:** Connect an existing Veho account to EasyPost using credentials provided by Veho. Billing is handled directly by Veho.

This guide includes detailed information on utilizing Veho Wallet shipping with the EasyPost API, focusing on account setup, rates, billing, label creation, pickups, tracking, and more.

---

## Prerequisites

### Account Registration

Sign up for an EasyPost account to obtain a **Test** and **Production** API
key. See Authentication and Key Management for more information.

> Note: EasyPost negotiated rates are only available in Production mode.

### Carrier Setup

#### Create via EasyPost Dashboard

1. Log in to EasyPost and navigate to **Account Settings**.
2. Select the **Carriers** tab.
3. Select the **EasyPost Wallet Carriers** tab.
4. Find Veho in the list of carriers and select **Create Account**.

#### Create via API

The API structure specified by EasyPost can also be used to add a Veho Wallet carrier account.

##### Carrier Account Type

The Veho Wallet carrier account includes the following fields:

```json
{
  "company": "Merchant Company Name",
  "agreed_to_terms_at": "Timestamp when Veho terms were accepted"
}
```

```shell
curl -X POST https://api.easypost.com/v2/carrier_accounts/open \
  -u "$EASYPOST_API_KEY": \
  -H 'Content-Type: application/json' \
  -d '{
  "carrier_account": {
    "type": "VehoWalletAccount",
    "reference": "Veho Wallet Account",
    "description": "Veho Wallet Account",
    "company": "VALUE",
    "agreed_to_terms_at": "VALUE"
  }
}'
```

### Software Requirements

Download an EasyPost Client Library or utilize the REST API with cURL.

### Documentation Review

Examine the EasyPost Objects section to understand the API's structure, which is critical for constructing requests and interpreting responses.

Related:

- [Getting Started Guide](https://docs.easypost.com/guides/getting-started)
- [Manage Carrier Accounts](https://app.easypost.com/account/settings?tab=carriers)

---

## Rates

Veho Wallet uses API-based live rating.

---

## Billing

Billing is handled through the EasyPost Wallet. Shipment charges are deducted directly from the customer's EasyPost Wallet.

If Veho determines that shipment details differ from the information provided when the label was purchased, the shipment may be subject to a billing adjustment. Any resulting charge or credit is applied to the EasyPost Wallet.

Related:

- [EasyPost Wallet and Bring Your Own Account Plans](https://support.easypost.com/hc/en-us/articles/39984592062605-EasyPost-Wallet-and-Bring-Your-Own-Carrier-Account-Plans)
- [Billing & Payments](https://support.easypost.com/hc/en-us/articles/360042414212-Billing-Payments)

---

## Service Levels

Veho Wallet supports one service level:

| Service Level   | Description                                              | International |
| --------------- | -------------------------------------------------------- | ------------- |
| `groundPlusOne` | The Veho Wallet service level available through EasyPost | No            |

### Coverage Area

Veho currently operates in limited areas within the United States.

![Veho Coverage Map](https://docs.easypost.com/images/guides/veho/veho-coverage-map.png)

For Veho coverage details, visit Veho's service area page.

---

## Predefined Packages

There are no predefined packages for Veho Wallet.

---

## Parcel Weight and Size Limitations

| Parcel Questions                  | Answer               |
| --------------------------------- | -------------------- |
| Max weight per parcel             | 50 lbs actual weight |
| Max dimensions per parcel         | 48 inches in length  |
| Standard delivery days            | Monday to Sunday     |
| Standard delivery times           | 8 a.m. - 10 p.m.     |
| Delivers on public/local holidays | Yes                  |
| Delivery attempts                 | 2 delivery attempts  |
| Picture POD available             | Yes                  |
| Signature service available       | Not currently        |

---

## Generating Shipping Labels

With EasyPost, generating shipping labels for Veho Wallet is the same process as generating them for any other carrier.

Review the Getting Started Guide for help generating a shipping label.

### Buying and One-Call Buys

Buying labels and one-call buys are supported via API.

See Reducing API Response Times for more information.

### Label Formats

Veho Wallet labels are available in PNG, PDF, and ZPL formats.

### Refunding and Voiding Labels

Voiding labels is supported through the EasyPost API.

### Returns

Returns are not supported.

Related:

- [Shipment Documentation](https://docs.easypost.com/docs/shipments)
- [One-Call Buy](https://docs.easypost.com/docs/shipments#buy-a-shipment-without-rating-one-call-buy)

---

## Hazardous Materials (HAZMAT)

Veho Wallet does not support hazardous materials.

---

## Pickups

Pickup purchasing is currently supported only in Atlanta, with expansion forthcoming to Los Angeles, Dallas, Philadelphia and Chicago before the end of 2026 via API with the following constraints:

- Minimum of 20 shipments.
- Minimum 3-hour pickup window.
- Currently supported only in Atlanta.

Veho pickups are billed at a fixed rate and can be voided through the API.

---

## Tracking

Tracking is supported via API and webhooks.

EasyPost simplifies package tracking by offering two methods:

- Tracking with an existing number and carrier.
- Using a Tracker included with an EasyPost-purchased shipping label.

The service integrates webhooks for timely shipment updates. For detailed information on tracking methods, visit the Tracking Guide.

Related:

- [Trackers Documentation](https://docs.easypost.com/docs/trackers)
- [Trackers Guide](https://docs.easypost.com/guides/tracking-guide)

---

## Additional Resources

### Carrier Metadata

The Carrier Metadata endpoint can programmatically return information about service levels, predefined packages, supported features, and shipment options.

### Support and Troubleshooting

In addition to the guidance provided in our Carrier Guides, EasyPost offers support to assist with FAQs, troubleshooting issues, and inquiries related to the EasyPost platform.

Please visit the Help Center for more information.

Related:

- [Carrier Metadata](https://docs.easypost.com/docs/carrier-metadata)
- [Help Center](https://support.easypost.com/hc/en-us)

---

## Talk to a Shipping Expert

For questions about getting started with Veho Wallet through the EasyPost API please talk to a Shipping Expert or Contact Support.

Related:

- [Talk to a Shipping Expert](https://www.easypost.com/talk-to-easypost)
- [Contact Support](https://support.easypost.com/hc/requests/new)