Order Detail

Get the details for a given order. Key Name values are case sensitive, they must be lower case and TRANSACTION_ID (i.e. 79700W3CKRDD) values must be upper case.

Endpoints

/rpc/v1/orders/detail.html
The browsable documentation for this API endpoint.
/rpc/v1/orders/detail.json
Endpoint that will return a JSON response.
/rpc/v1/orders/detail.xml
Endpoint that will return an XML response.

Usage

Usage for HTTP GET

Key Name: trid
System provided Transaction ID associated with the order

Error Codes

401 Authentication
The key provided could not be authenticated

Response Samples

Successful Response [XML]
<?xml version="1.0" encoding="UTF-8"?>
<response>
 <status>ok</status>
 <count>
  <success>1</success>
  <failure>0</failure>
 </count>
 <errors/>
 <result>
  <status>R</status>
  <score>55</score>
  <auth_status>A</auth_status>
 </result>
</response>
Successful Response [JSON]
{"status":"ok","count":{"success":1,"failure":0},"errors":[],"result":{"status":"R","score":"55","auth_status":"A"}}

Code Examples

GET
curl -G -d "trid=TRANSACTION_ID" \
     -H "X-Kount-Api-Key: XXX.YYY.ZZZ" \
     https://api.kount.net/rpc/v1/orders/detail.json