Siparişlerim

Siparişlerim

POST https://backlinksitesi.com/api/orders/myorders.php

Siparişlerinizi görüntüleyin

Request Body

NameTypeDescription

user

String

Hesap ID'niz

{
  "message": "Siparişler başarıyla bulundu.",
  "status": "success",
  "code": "200",
  "data": [
    {
      "id": "integer",
      "user_id": "string",
      "domain": "string",
      "keywords": "string",
      "packages": "json stringify",
      "total_price": "integer",
      "status": "enum (Pending/Processing/Completed/Cancelled)",
      "created_at": "timestamp",
      "downloadlink": "string",
      "seostore_id": "string",
      "packageName": "string",
      "orderUserName": "string",
      "orderUserEmail": "string",
      "extra_services": []
    },
    // ...
  ]
}

PHP Örnek Kod

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "https://backlinksitesi.com/api/orders/myorders.php");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
    'x-user-email: xxx',
    'x-user-password: xxx'
));

$postData = array(
    'user' => '123'
);

curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $postData);
$resp = curl_exec($curl);
curl_close($curl);
print_r($resp);

Last updated