{"id":37009120,"url":"https://github.com/hellojebus/php-mws-api","last_synced_at":"2026-01-14T00:52:06.284Z","repository":{"id":56983935,"uuid":"129425674","full_name":"hellojebus/php-mws-api","owner":"hellojebus","description":"A library to connect to Amazon's MWS web services in an object oriented manner","archived":false,"fork":true,"pushed_at":"2018-04-13T23:07:04.000Z","size":773,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"stable","last_synced_at":"2024-08-10T07:27:15.759Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"joe-pritchard/phpAmazonMWS","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hellojebus.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-04-13T16:09:11.000Z","updated_at":"2018-04-13T23:06:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hellojebus/php-mws-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hellojebus/php-mws-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellojebus%2Fphp-mws-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellojebus%2Fphp-mws-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellojebus%2Fphp-mws-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellojebus%2Fphp-mws-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hellojebus","download_url":"https://codeload.github.com/hellojebus/php-mws-api/tar.gz/refs/heads/stable","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellojebus%2Fphp-mws-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28407385,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T00:40:43.272Z","status":"ssl_error","status_checked_at":"2026-01-14T00:40:42.636Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-14T00:52:05.484Z","updated_at":"2026-01-14T00:52:06.270Z","avatar_url":"https://github.com/hellojebus.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"phpAmazonMWS\n============\n\n[![Build Status](https://travis-ci.org/CPIGroup/phpAmazonMWS.svg?branch=stable)](https://travis-ci.org/CPIGroup/phpAmazonMWS)\n\nA library to connect to Amazon's Merchant Web Services (MWS) in an object-oriented manner, with a focus on intuitive usage.  \n\nThis is __NOT__ for Amazon Web Services (AWS) - Cloud Computing Services.\n\n\n## Example Usage\nHere are a couple of examples of the library in use.\nAll of the technical details required by the API are handled behind the scenes,\nso users can easily build code for sending requests to Amazon\nwithout having to jump hurdles such as parameter URL formatting and token management. \n\nHere is an example of a function used to get all warehouse-fulfilled orders from Amazon updated in the past 24 hours:\n```php\nfunction getAmazonOrders() {\n    $amz = new AmazonOrderList(\"myStore\"); //store name matches the array key in the config file\n    $amz-\u003esetLimits('Modified', \"- 24 hours\");\n    $amz-\u003esetFulfillmentChannelFilter(\"MFN\"); //no Amazon-fulfilled orders\n    $amz-\u003esetOrderStatusFilter(\n        array(\"Unshipped\", \"PartiallyShipped\", \"Canceled\", \"Unfulfillable\")\n        ); //no shipped or pending\n    $amz-\u003esetUseToken(); //Amazon sends orders 100 at a time, but we want them all\n    $amz-\u003efetchOrders();\n    return $amz-\u003egetList();\n}\n```\nThis example shows a function used to send a previously-created XML feed to Amazon to update Inventory numbers:\n```php\nfunction sendInventoryFeed($feed) {\n    $amz=new AmazonFeed(); //if there is only one store in config, it can be omitted\n    $amz-\u003esetFeedType(\"_POST_INVENTORY_AVAILABILITY_DATA_\"); //feed types listed in documentation\n    $amz-\u003esetFeedContent($feed);\n    $amz-\u003esubmitFeed();\n    return $amz-\u003egetResponse();\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhellojebus%2Fphp-mws-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhellojebus%2Fphp-mws-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhellojebus%2Fphp-mws-api/lists"}