EasyPost\Shipment::stamp PHP Method

stamp() public method

get the shipment stamp
public stamp ( mixed $params = null ) : mixed
$params mixed
return mixed
    public function stamp($params = null)
    {
        $requestor = new Requestor($this->_apiKey);
        $url = $this->instanceUrl() . '/stamp';
        list($response, $apiKey) = $requestor->request('get', $url, $params);
        return $response['stamp_url'];
    }