Get order return status list https://api.rrr.lt/get/order_return_status

POST parameters

Name Type Required Data
username Text varchar(50) YES Username
password Text varchar(100) YES Password
user_token Text YES Token provided

PHP Curl example code

$post = [
'username' => '',
'password' => '',
'user_token' => '',
];

$ch = curl_init('https://api.rrr.lt/get/order_return_status');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = json_decode(curl_exec($ch));
curl_close($ch);

Output

{
    "list": {
        {
            'New',
            'In progress',
            'Refund',
            'Dispute in progress',
            'Cancelled (product not returned)',
            'Cancelled (product damaged)',
            'Returned',
        },
    },
    "msg": "OK",
    "status_code": "R200"
}