Page 1 of 6 123 ... LastLast
Results 1 to 10 of 56
  1. #1
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,703
    Plugin Contributions
    123

    Default FedEx Shipping using REST API

    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  2. #2
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,703
    Plugin Contributions
    123

    Default Re: FedEx Shipping using REST API

    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #3
    Join Date
    Apr 2019
    Posts
    245
    Plugin Contributions
    0

    Default Re: FedEx Shipping using REST API

    Quote Originally Posted by swguy View Post
    This FedEx developer portal is extremely hard to use. It will always show error page somehow and ask you contact FedEx support. Refresh the page sometimes works but sometimes doesn't. I also tried to log out and log in again. Very frustrated.

    Here are the steps:

    1. Go to manage organization page, create an organization there.

    2. Then go the my projects page, create a new project. It seems I cannot enter a shipping location there, or it doesn't allow me to submit.

    3. Under your new project page, go to production key tab. You need to add a shipping account there by your FedEx account number. You need to see the agreement and confirm there. If you failed to confirm, it will not work. You can go to manage organization, shipping accounts. You can view the agreement there. After you confirm the agreement successfully, license agreement status need to be "Completed". Then you can go back to the project page, then create a production key there.

  4. #4
    Join Date
    Apr 2019
    Posts
    245
    Plugin Contributions
    0

    Default Re: FedEx Shipping using REST API

    One more update. I just generally tested this plug-in (v0.9) and it worked great. One suggestion: I noticed that there is no option to resort the result. So by default, the highest quote shows at the top and the lowest quote shows at the bottom. It could be more customer friendly if the display can be reversed, so the lowest quote shows at the top. The code in the following post still works.

    https://www.zen-cart.com/showthread....83#post1117683

  5. #5
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,703
    Plugin Contributions
    123

    Default Re: FedEx Shipping using REST API

    Sounds good, will add to the next update. Thanks for reporting your success.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  6. #6
    Join Date
    Apr 2019
    Posts
    245
    Plugin Contributions
    0

    Default Re: FedEx Shipping using REST API

    Quote Originally Posted by njcyx View Post
    One more update. I just generally tested this plug-in (v0.9) and it worked great. One suggestion: I noticed that there is no option to resort the result. So by default, the highest quote shows at the top and the lowest quote shows at the bottom. It could be more customer friendly if the display can be reversed, so the lowest quote shows at the top. The code in the following post still works.

    https://www.zen-cart.com/showthread....83#post1117683
    I just checked the latest USPS module (k11i), and the sorting function looks more professional (thanks @lat9 ). You may refer to it for this function:

    Near line 885

    PHP Code:
            // sort results
            
    if (MODULE_SHIPPING_USPS_QUOTE_SORT !== 'Unsorted') {
                if (
    count($methods) !== 0) {
                    if (
    strpos(MODULE_SHIPPING_USPS_QUOTE_SORT'Price') === 0) {
                        foreach (
    $methods as $c => $key) {
                            
    $sort_cost[] = $key['cost'];
                            
    $sort_id[] = $key['id'];
                        }
                        
    array_multisort($sort_cost, (MODULE_SHIPPING_USPS_QUOTE_SORT === 'Price-LowToHigh' SORT_ASC SORT_DESC), $sort_idSORT_ASC$methods);
                    } else {
                        foreach (
    $methods as $c => $key) {
                            
    $sort_key[] = $key['title'];
                            
    $sort_id[] = $key['id'];
                        }
                        
    array_multisort($sort_key, (MODULE_SHIPPING_USPS_QUOTE_SORT === 'Alphabetical' SORT_ASC SORT_DESC), $sort_idSORT_ASC$methods);
                    }
                }
            } 

  7. #7
    Join Date
    Apr 2019
    Posts
    245
    Plugin Contributions
    0

    Default Re: FedEx Shipping using REST API

    Hi @swguy, can you please try and see if FedEx 2day Saturday delivery is displayed properly? My testing site didn't show it up today (Thursday), but only the regular FedEx 2day. Saturday Delivery option is enabled in the option. Also, there is no shipping cutoff time option...

    To clarify, Saturday delivery option should be only available for 2day shipping on Thursday, and for overnight shippings on Friday.

    I checked the debug file, there is no 2day saturday delivery option neither... Only regular 2day and 2day am.
    Last edited by njcyx; 13 Jul 2023 at 03:30 PM.

  8. #8
    Join Date
    Apr 2019
    Posts
    245
    Plugin Contributions
    0

    Default Re: FedEx Shipping using REST API

    Quote Originally Posted by njcyx View Post
    Hi @swguy, can you please try and see if FedEx 2day Saturday delivery is displayed properly? My testing site didn't show it up today (Thursday), but only the regular FedEx 2day. Saturday Delivery option is enabled in the option. Also, there is no shipping cutoff time option...

    To clarify, Saturday delivery option should be only available for 2day shipping on Thursday, and for overnight shippings on Friday.

    I checked the debug file, there is no 2day saturday delivery option neither... Only regular 2day and 2day am.
    One more update. I just tried to get a quote today (Friday). Overnight with saturday delivery options didn't show up neither...

  9. #9
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,703
    Plugin Contributions
    123

    Default Re: FedEx Shipping using REST API

    I will investigate. Please be patient.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  10. #10
    Join Date
    Apr 2019
    Posts
    245
    Plugin Contributions
    0

    Default Re: FedEx Shipping using REST API

    Thanks. Take time.

    I'm not sure if there is a way to test this feature other than Thursday and Friday...

 

 
Page 1 of 6 123 ... LastLast

Similar Threads

  1. v158 UPS Shipping using RESTful/OAuth API [Support Thread]
    By lat9 in forum Addon Shipping Modules
    Replies: 122
    Last Post: 26 Apr 2024, 05:15 PM
  2. PayPal Express Checkout with REST API
    By kanine in forum PayPal Express Checkout support
    Replies: 1
    Last Post: 19 Jun 2022, 05:23 AM
  3. Rest api?
    By skywalker826 in forum General Questions
    Replies: 4
    Last Post: 31 Aug 2013, 04:30 PM
  4. Suomen verkkomaksut (SVM) REST API payment module
    By pasi in forum Addon Payment Modules
    Replies: 3
    Last Post: 9 Mar 2013, 09:57 AM
  5. Fedex Signature required option in fedex api
    By jeba in forum Addon Shipping Modules
    Replies: 0
    Last Post: 15 Oct 2009, 08:48 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR