Skip to content

Get Amazon ASIN completed tasks

jovixv edited this page Nov 6, 2018 · 2 revisions

Get Amazon ASIN completed tasks

Original docs can be found at https://docs.dataforseo.com/#get-amazon-asin-completed-tasks

Method: get() - calls api and returns an object ResponseCollection

use DFSClient\DFSClient;
use DFSClient\Models\MerchantApi\Amazon\GetAmazonAsinCompletedTasks;

$DFSClient = new DFSClient('Your Login','Your Password');
$model   = new GetAmazonAsinCompletedTasks();

$completed = $model->get();

if (!$completed->isSuccessful())
    dd($completed);

foreach ($completed as $key=>$item){
    dump($item);
}

Getting Started

  1. Home
  2. Installation
  3. Configuration
  4. Base Usage
  5. Response Collection
  6. Abstract Model

DataForSEO APIs

Clone this wiki locally