NATS For Networks REST API Transaction Update Revenue By Orderid

From TMM Wiki
Revision as of 13:30, 12 May 2017 by TMMNick (talk | contribs) (Created page with "{{NATS For Networks Manual | show_api_admin_section = true }} == '''POST /transaction/transaction_update_revenue_by_orderid''' == '''Description''' *Updates the amount of a...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Template:NATS For Networks Manual

POST /transaction/transaction_update_revenue_by_orderid

Description

  • Updates the amount of a transaction for a provided orderid


Resource URL

  • http://domain/api/transaction/transaction_update_revenue_by_orderid
  • Replace domain with the NATS For Networks domain

Response Format

  • JSON

Request Method

  • PATCH

Authentication

  • HTTP headers

Parameters

  • amount
    • type: integer
    • required
    • the amount to set for the transaction in cents
  • orderid
    • type: string
    • required
    • the orderid of the transaction to update in NATS For Networks

Example Request

PATCH


http://domain/api/transaction/transaction_update_revenue_by_orderid
orderid = N4N:14940018242790524363
amount = 2500


  • Response:
array(1) { 
	'result' => string(7) "success"
}

Example Code

PHP

<?php
$curl = curl_init();

$url = 'http://domain/api/transaction/transaction_update_revenue_by_orderid';

$headers = array(
	'api-key: 44b5498dbcb481a0d00b404c0169af62',
	'api-username: productsupport'
);

$data = array(
	'amount' => '2500', // $25.00
	'orderid' => 'N4N:14940018242790524363',
);

// do the api call
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($curl, CURLOPT_URL, $url);    
$resp = curl_exec($curl);

//dumps an associative array representation of the json response
$output = json_decode($resp, true);
if($output !== NULL) {
	//json was valid. Dump the decoded array
	var_dump($output);
}
else {
	//invalid json, just dump the raw response
	var_dump($resp);
}
?>