AOTG API: Create Debtor

Revision as of 08:59, 27 February 2019 by DanielY (talk | contribs) (Created page with "==Create Debtor== Add a new Debtor to account book. {{AOTGApiMethodsSpec|POST|/api/public/v1/Debtor}} <br/> ==Code Snippets== *Add header of "SOTC_AUTH", and assign value of '...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Create Debtor

Add a new Debtor to account book.

API Method

Http Method: POST
Method: /api/public/v1/Debtor
Content-Type: application/json
Parameters: 


Code Snippets

  • Add header of "SOTC_AUTH", and assign value of AccessToken.


<?php

$request = new HttpRequest();
$request->setUrl('http://aotg.cloud:8080/api/public/v1/Debtor');
$request->setMethod(HTTP_METH_POST);

$request->setHeaders(array(
  'cache-control' => 'no-cache',
  'SOTC_AUTH' => 'SAMc13a36d2-a139-e911-b8b3-000d3aa04f3d',
  'Content-Type' => 'application/json'
));

$request->setBody('  {
    "CompanyName": "AutoCount On The Go",
    "RegisterNo": "",
    "Description": "AOTG",
    "InvoiceAddress": {
      "Contact": "Mr.Tan",
      "Fax": "",
      "Phone": "02111373",
      "Address1": "1/2, PINE STREET,",
      "Address2": "CENTURY ROAD,",
      "Address3": "SELANGOR",
      "Address4": "50000 MALAYSIA"
    },
    "DeliverAddress": {
      "Contact": "Mr.Tan",
      "Fax": "",
      "Phone": "02111373",
      "Address1": "1/2, PINE STREET,",
      "Address2": "Delivery CENTURY ROAD,",
      "Address3": "SELANGOR",
      "Address4": "50000 MALAYSIA"
    },
    "CreditTerm": "C.O.D.",
    "CreditLimit": 30000,
    "WebURL": "",
    "EmailAddress": "",
    "IsActive": true,
    "CurrencyCode": "MYR",
    "IsTaxRegistered": null
  }');

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}

var client = new RestClient("http://aotg.cloud:8080/api/public/v1/Debtor");
var request = new RestRequest(Method.POST);
request.AddHeader("cache-control", "no-cache");
request.AddHeader("SOTC_AUTH", "SAMc13a36d2-a139-e911-b8b3-000d3aa04f3d");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("undefined", "  {\r\n    \"CompanyName\": \"AutoCount On The Go\",\r\n    \"RegisterNo\": \"\",\r\n    \"Description\": \"AOTG\",\r\n    \"InvoiceAddress\": {\r\n      \"Contact\": \"Mr.Tan\",\r\n      \"Fax\": \"\",\r\n      \"Phone\": \"02111373\",\r\n      \"Address1\": \"1/2, PINE STREET,\",\r\n      \"Address2\": \"CENTURY ROAD,\",\r\n      \"Address3\": \"SELANGOR\",\r\n      \"Address4\": \"50000 MALAYSIA\"\r\n    },\r\n    \"DeliverAddress\": {\r\n      \"Contact\": \"Mr.Tan\",\r\n      \"Fax\": \"\",\r\n      \"Phone\": \"02111373\",\r\n      \"Address1\": \"1/2, PINE STREET,\",\r\n      \"Address2\": \"Delivery CENTURY ROAD,\",\r\n      \"Address3\": \"SELANGOR\",\r\n      \"Address4\": \"50000 MALAYSIA\"\r\n    },\r\n    \"CreditTerm\": \"C.O.D.\",\r\n    \"CreditLimit\": 30000,\r\n    \"WebURL\": \"\",\r\n    \"EmailAddress\": \"\",\r\n    \"IsActive\": true,\r\n    \"CurrencyCode\": \"MYR\",\r\n    \"IsTaxRegistered\": null\r\n  }", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_PORT => "8080",
  CURLOPT_URL => "http://aotg.cloud:8080/api/public/v1/Debtor",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => "  {\r\n    \"CompanyName\": \"AutoCount On The Go\",\r\n    \"RegisterNo\": \"\",\r\n    \"Description\": \"AOTG\",\r\n    \"InvoiceAddress\": {\r\n      \"Contact\": \"Mr.Tan\",\r\n      \"Fax\": \"\",\r\n      \"Phone\": \"02111373\",\r\n      \"Address1\": \"1/2, PINE STREET,\",\r\n      \"Address2\": \"CENTURY ROAD,\",\r\n      \"Address3\": \"SELANGOR\",\r\n      \"Address4\": \"50000 MALAYSIA\"\r\n    },\r\n    \"DeliverAddress\": {\r\n      \"Contact\": \"Mr.Tan\",\r\n      \"Fax\": \"\",\r\n      \"Phone\": \"02111373\",\r\n      \"Address1\": \"1/2, PINE STREET,\",\r\n      \"Address2\": \"Delivery CENTURY ROAD,\",\r\n      \"Address3\": \"SELANGOR\",\r\n      \"Address4\": \"50000 MALAYSIA\"\r\n    },\r\n    \"CreditTerm\": \"C.O.D.\",\r\n    \"CreditLimit\": 30000,\r\n    \"WebURL\": \"\",\r\n    \"EmailAddress\": \"\",\r\n    \"IsActive\": true,\r\n    \"CurrencyCode\": \"MYR\",\r\n    \"IsTaxRegistered\": null\r\n  }",
  CURLOPT_HTTPHEADER => array(
    "Content-Type: application/json",
    "SOTC_AUTH: SAMc13a36d2-a139-e911-b8b3-000d3aa04f3d",
    "cache-control: no-cache"
  ),
));

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}

Code is not available


Response

Successful created debtor.

{
    "Id": "abf79c80-13e9-41ae-993d-2cd6b99b5570",
    "Name": "CreateDebtor",
    "StartTimestamp": "2019-02-27T08:46:06.8497001Z",
    "EndTimestamp": "2019-02-27T08:46:06.8497001Z"
}


See Also AOTG API


Go to menu

  Go to top
  Resources For AutoCount Software Developers