Skip to content

Commit

Permalink
Added GetFeedSubmissionList
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaisolomon committed Oct 31, 2020
1 parent 04b787a commit b52bb41
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/MWSClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,23 @@ public function validateCredentials()
}
}

/**
* Returns the feed processing report and the Content-MD5 header.
*
* @param string $FeedSubmissionId
*
* @return array
* @throws \Exception
*/
public function GetFeedSubmissionList($FeedSubmissionId)
{
$result = $this->request('GetFeedSubmissionList', [
'FeedSubmissionIdList.Id.1' => $FeedSubmissionId,
]);

return $result;
}

/**
* Returns the current competitive price of a product, based on ASIN.
* @param array [$asin_array = []]
Expand Down

0 comments on commit b52bb41

Please sign in to comment.