List transaction history
curl --request POST \
--url https://billing.platform.arb.inc/transactions/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"limit": 20,
"cursor": "2025-08-15T10:30:00.000Z",
"transactionType": "charge",
"caseID": "2025-08-00292",
"partyID": "claimant"
}
'import requests
url = "https://billing.platform.arb.inc/transactions/list"
payload = {
"limit": 20,
"cursor": "2025-08-15T10:30:00.000Z",
"transactionType": "charge",
"caseID": "2025-08-00292",
"partyID": "claimant"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
limit: 20,
cursor: '2025-08-15T10:30:00.000Z',
transactionType: 'charge',
caseID: '2025-08-00292',
partyID: 'claimant'
})
};
fetch('https://billing.platform.arb.inc/transactions/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://billing.platform.arb.inc/transactions/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'limit' => 20,
'cursor' => '2025-08-15T10:30:00.000Z',
'transactionType' => 'charge',
'caseID' => '2025-08-00292',
'partyID' => 'claimant'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://billing.platform.arb.inc/transactions/list"
payload := strings.NewReader("{\n \"limit\": 20,\n \"cursor\": \"2025-08-15T10:30:00.000Z\",\n \"transactionType\": \"charge\",\n \"caseID\": \"2025-08-00292\",\n \"partyID\": \"claimant\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://billing.platform.arb.inc/transactions/list")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"limit\": 20,\n \"cursor\": \"2025-08-15T10:30:00.000Z\",\n \"transactionType\": \"charge\",\n \"caseID\": \"2025-08-00292\",\n \"partyID\": \"claimant\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://billing.platform.arb.inc/transactions/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"limit\": 20,\n \"cursor\": \"2025-08-15T10:30:00.000Z\",\n \"transactionType\": \"charge\",\n \"caseID\": \"2025-08-00292\",\n \"partyID\": \"claimant\"\n}"
response = http.request(request)
puts response.read_body{
"transactions": [
{
"id": "7e2a8c9f-1b3d-4e6f-8a7c-9b1e3d5f7a9c",
"created": "2025-08-15T14:30:00.000Z",
"updated": "2025-08-15T14:30:00.000Z",
"balanceID": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"userID": "2720f109-0caf-4c62-af22-5d08c853711c",
"orgID": "3840f219-1dbf-5d73-bg33-6e19d964822d",
"caseID": "2025-08-00292",
"partyID": "claimant",
"createdBy": "user-2720f109-0caf-4c62-af22-5d08c853711c",
"transactionType": "charge",
"status": "completed",
"subtotalCredits": 10,
"subtotalDollars": 0,
"taxCredits": 0.5,
"taxDollars": 0,
"totalCredits": 10.5,
"totalDollars": 0,
"items": [
{
"id": "4f5e6d7c-8b9a-0c1d-2e3f-4a5b6c7d8e9f",
"skuID": "5e8f9a7b-3c2d-4e6f-9a8c-7d6e5f4a3b2c",
"skuCode": "DOCUMENT_FILING",
"skuName": "Document Filing",
"skuDescription": "File a document in a case",
"quantity": 1,
"unitPriceCredits": 10,
"unitPriceDollars": 0,
"lineSubtotalCredits": 10,
"lineSubtotalDollars": 0
}
]
}
],
"nextCursor": "2025-08-14T09:15:00.000Z",
"hasMore": true
}transactions
List transaction history
Lists transaction history for the authenticated user or organization with pagination support. Supports filtering by transaction type, case ID, and party ID.
POST
/
transactions
/
list
List transaction history
curl --request POST \
--url https://billing.platform.arb.inc/transactions/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"limit": 20,
"cursor": "2025-08-15T10:30:00.000Z",
"transactionType": "charge",
"caseID": "2025-08-00292",
"partyID": "claimant"
}
'import requests
url = "https://billing.platform.arb.inc/transactions/list"
payload = {
"limit": 20,
"cursor": "2025-08-15T10:30:00.000Z",
"transactionType": "charge",
"caseID": "2025-08-00292",
"partyID": "claimant"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
limit: 20,
cursor: '2025-08-15T10:30:00.000Z',
transactionType: 'charge',
caseID: '2025-08-00292',
partyID: 'claimant'
})
};
fetch('https://billing.platform.arb.inc/transactions/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://billing.platform.arb.inc/transactions/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'limit' => 20,
'cursor' => '2025-08-15T10:30:00.000Z',
'transactionType' => 'charge',
'caseID' => '2025-08-00292',
'partyID' => 'claimant'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://billing.platform.arb.inc/transactions/list"
payload := strings.NewReader("{\n \"limit\": 20,\n \"cursor\": \"2025-08-15T10:30:00.000Z\",\n \"transactionType\": \"charge\",\n \"caseID\": \"2025-08-00292\",\n \"partyID\": \"claimant\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://billing.platform.arb.inc/transactions/list")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"limit\": 20,\n \"cursor\": \"2025-08-15T10:30:00.000Z\",\n \"transactionType\": \"charge\",\n \"caseID\": \"2025-08-00292\",\n \"partyID\": \"claimant\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://billing.platform.arb.inc/transactions/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"limit\": 20,\n \"cursor\": \"2025-08-15T10:30:00.000Z\",\n \"transactionType\": \"charge\",\n \"caseID\": \"2025-08-00292\",\n \"partyID\": \"claimant\"\n}"
response = http.request(request)
puts response.read_body{
"transactions": [
{
"id": "7e2a8c9f-1b3d-4e6f-8a7c-9b1e3d5f7a9c",
"created": "2025-08-15T14:30:00.000Z",
"updated": "2025-08-15T14:30:00.000Z",
"balanceID": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"userID": "2720f109-0caf-4c62-af22-5d08c853711c",
"orgID": "3840f219-1dbf-5d73-bg33-6e19d964822d",
"caseID": "2025-08-00292",
"partyID": "claimant",
"createdBy": "user-2720f109-0caf-4c62-af22-5d08c853711c",
"transactionType": "charge",
"status": "completed",
"subtotalCredits": 10,
"subtotalDollars": 0,
"taxCredits": 0.5,
"taxDollars": 0,
"totalCredits": 10.5,
"totalDollars": 0,
"items": [
{
"id": "4f5e6d7c-8b9a-0c1d-2e3f-4a5b6c7d8e9f",
"skuID": "5e8f9a7b-3c2d-4e6f-9a8c-7d6e5f4a3b2c",
"skuCode": "DOCUMENT_FILING",
"skuName": "Document Filing",
"skuDescription": "File a document in a case",
"quantity": 1,
"unitPriceCredits": 10,
"unitPriceDollars": 0,
"lineSubtotalCredits": 10,
"lineSubtotalDollars": 0
}
]
}
],
"nextCursor": "2025-08-14T09:15:00.000Z",
"hasMore": true
}Authorizations
access token
Body
application/json
Maximum number of transactions to return (1-100)
Example:
20
Pagination cursor from previous response
Example:
"2025-08-15T10:30:00.000Z"
Filter by transaction type
Available options:
charge, credit, refund Example:
"charge"
Filter by case ID (exact match, max 20 characters)
Example:
"2025-08-00292"
Filter by party ID (exact match, max 20 characters)
Example:
"claimant"
⌘I