Get a single Sales Order

This endpoint is deprecated.
POST/api/RPC.common.Api.So.getOneData?token=<TOKEN>

Key So.getOneData · API version 2.0.0

Parameters

2 body parameters inside data[]
FieldTypeDescription
idIntegerSales Order ID
numrequiredStringSales Order ID

Request example

Search One So By Num:
{
   "data" : [
      {
         "num" : "CO10000285"
      }
   ]
}
Search One So By Id:
{
   "data" : [
      {
         "id" : 3235115
      }
   ]
}

cURL

Search One So By Num:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "num" : "CO10000285"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.So.getOneData?token=<TOKEN>"
Search One So By Id:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "id" : 3235115      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.So.getOneData?token=<TOKEN>"

Response example

    HTTP/1.1 200 OK
{
   "result" : [
      {
         "sale_type_nm" : "Main Sales",
         "id" : 3235115,
         "receiver_nm" : null,
         "tax_deal_nm" : "Sales",
         "num" : "CO10000285",
         "action_date" : null,
         "rows" : [
            {
               "trans_id" : 3235115,
               "single_price_before_discounts" : "64.65800000000000000000",
               "taxes" : "12.93200000000000000000",
               "category_name" : "Proteins",
               "label" : null,
               "total_price" : "64.65800000000000000000",
               "description" : "\nDesigned by Apple to complement iPhone X, the form of the silicone case fits snugly over the volume buttons, side button and curves of your device without adding bulk.",
               "total_price_with_taxes" : "77.59000000000000000000",
               "sku" : 10020,
               "measure_nm" : "Pieces",
               "quantity" : "1.00000000000000000000"
            },
            {
               "single_price_before_discounts" : "31.50000000000000000000",
               "quantity" : "1.00000000000000000000",
               "total_price_with_taxes" : "37.80000000000000000000",
               "total_price" : "31.50000000000000000000",
               "description" : "The 1.8-metre Power Adapter Extension Cable is an AC extension lead that provides extra length for your Apple power adapter.",
               "label" : null,
               "category_name" : "Amino acids",
               "trans_id" : 3235115,
               "taxes" : "6.30000000000000000000",
               "measure_nm" : "Pieces",
               "sku" : 10026
            },
            {
               "total_price" : "64.65800000000000000000",
               "description" : "\nMade from specially tanned and finished European leather, these Apple-designed cases look and feel luxurious.",
               "label" : null,
               "category_name" : "Proteins",
               "trans_id" : 3235115,
               "single_price_before_discounts" : "64.65800000000000000000",
               "taxes" : "12.93200000000000000000",
               "quantity" : "1.00000000000000000000",
               "measure_nm" : "Pieces",
               "total_price_with_taxes" : "77.59000000000000000000",
               "sku" : 10021
            },
            {
               "measure_nm" : "Pieces",
               "sku" : 10017,
               "total_price_with_taxes" : "69.63000000000000000000",
               "quantity" : "1.00000000000000000000",
               "category_name" : "Amino acids",
               "trans_id" : 3235115,
               "single_price_before_discounts" : "58.02500000000000000000",
               "taxes" : "11.60500000000000000000",
               "total_price" : "58.02500000000000000000",
               "description" : "\nConnect your iPhone, iPad or iPod with Lightning connector to your USB-C– or Thunderbolt 3 (USB-C)–enabled Mac for syncing and charging.",
               "label" : null
            },
            {
               "quantity" : "1.00000000000000000000",
               "measure_nm" : "Pieces",
               "total_price_with_taxes" : "17.91000000000000000000",
               "sku" : 10014,
               "total_price" : "14.92500000000000000000",
               "description" : "5.8-inch display, Silver, 64GB",
               "label" : null,
               "category_name" : "Smartphones",
               "trans_id" : 3235115,
               "taxes" : "2.98500000000000000000",
               "single_price_before_discounts" : "14.92500000000000000000"
            }
         ],
         "from_nm" : "Online Sales",
         "description" : null,
         "status" : "done",
         "currency" : "BGN",
         "rel_trans" : [
            {
               "num" : "0000000285",
               "trans_id" : 3235115,
               "for_date" : "2021-03-08",
               "rel_trans_id" : 3235136,
               "type" : "invoice"
            },
            {
               "num" : "0110000046",
               "trans_id" : 3235115,
               "for_date" : "2021-03-08",
               "rel_trans_id" : 3235144,
               "type" : "cash_income"
            },
            {
               "for_date" : "2021-03-08",
               "rel_trans_id" : 3235123,
               "type" : "store_out",
               "num" : "STO2000138",
               "trans_id" : 3235115
            }
         ],
         "sender_nm" : "London",
         "for_date" : "2021-03-08",
         "trader_nm" : "Prim Support",
         "action_name" : "Sale",
         "partners" : {
            "nm" : "EUROPE Insurance Company, Ltd",
            "eik" : 121261531,
            "mail" : "",
            "phone" : "+359988396137",
            "id" : 3139449
         },
         "internal_description" : null,
         "pay_type_nm" : "Cash",
         "to_nm" : "EUROPE Insurance Company, Ltd",
         "curs" : "0.51129188119621848525",
         "speditor_data" : null
      }
   ]
}