Skip to main content
GET
/
commissions
/
{id}
Get commission
curl --request GET \
  --url https://api.openquota.ai/v1/commissions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "user_id": "<string>",
  "period_id": "<string>",
  "deal_id": "<string>",
  "plan_version_id": "<string>",
  "rule_chip_id": "<string>",
  "rule_version": "<string>",
  "amount_cents": 123,
  "status": "<string>",
  "triggering_domain_event_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "trace": null
}
The detail response includes trace — the structured chip-evaluation history that produced this amount. Surface it alongside the amount in rep dashboards so reps (and auditors) can see why this commission exists.

Authorizations

Authorization
string
header
required

Provide your API key as Authorization: Bearer <key>. Generate keys in the OpenQuota admin under Settings → API Keys.

Path Parameters

id
string
required
Example:

"ern_01abc..."

Response

The commission row with trace.

id
string
required
user_id
string
required
period_id
string
required
deal_id
string | null
required
plan_version_id
string
required
rule_chip_id
string
required
rule_version
string
required
amount_cents
integer
required
status
string
required
triggering_domain_event_id
string | null
required
created_at
string<date-time>
required
trace
unknown