php - Fedex Characters limit in Address Streetlines -
i integrating fedex api there 35 characters limitation in address of shipper , recipient. in every case address length more 35 characters.
here sample fedex code shipper in php :
$shipper = array( 'contact' => array( 'personname' => 'sender name', 'companyname' => 'sender company name', 'phonenumber' => '1234567890' ), 'address' => array( 'streetlines' => '1 sender street', 'city' => 'pune', 'stateorprovincecode' => 'mh', 'postalcode' => '411011', 'countrycode' => 'in', 'countryname' => 'india' ) );
for streetlines, there limit of 35 characters. fedex not considering character after 35 characters. please let me know how can fix issue.
i got solution this. pass 'streetlines' this:
'streetlines' => array('1 sender street', 'temp road')
each value contain <=35 characters. can push more values also.
Comments
Post a Comment