commission.created
Published when a commission is generated for a promoter following a signup or purchase conversion.
Event type: in.org.quicko.cliq.commission.created
Event Schema
| Field | Type | Description |
|---|---|---|
id | string (uuid) | Unique event ID |
time | string (ISO 8601) | Time the event occurred |
specversion | string | CloudEvents spec version |
datacontenttype | string | application/json |
program_id | string (uuid) | Program the commission belongs to |
promoter_id | string (uuid) | Promoter who earned the commission |
source | string | Originating endpoint |
type | string | Event type identifier |
data | object | Event data (see below) |
subject | string (uuid) | Commission ID |
data
| Field | Type | Description |
|---|---|---|
@entity | string | in.org.quicko.cliq.commission |
commission_id | string (uuid) | ID of the generated commission |
contact_id | string (uuid) | ID of the contact whose action triggered the commission |
conversion_type | string | Conversion that triggered the commission — signup or purchase |
promoter_id | string (uuid) | Promoter who earned the commission |
link_id | string (uuid) | Referral link associated with the conversion |
amount | number | Commission amount earned |
revenue | number | Revenue from the conversion (0 for signups) |
created_at | string (ISO 8601) | Commission creation timestamp |
updated_at | string (ISO 8601) | Commission last updated timestamp |
Example Payload
{
"id": "ba1b2326-5c26-4ed8-b7fd-c3ffad43a5f5",
"time": "2026-04-06T06:23:08.397Z",
"specversion": "1.0",
"datacontenttype": "application/json",
"program_id": "930433e7-591c-4dda-a300-d3bfe17bd03d",
"promoter_id": "c06d4f0f-ccfb-4d6e-8bed-eea28460b698",
"source": "urn:in.org.quicko.cliq",
"type": "in.org.quicko.cliq.commission.created",
"subject": "eb8c32ce-7f3e-4fad-8b61-3c246ef69ba9",
"data": {
"@entity": "in.org.quicko.cliq.commission",
"commission_id": "eb8c32ce-7f3e-4fad-8b61-3c246ef69ba9",
"contact_id": "34fcf008-d537-409d-a10f-c9625bb5d8e7",
"conversion_type": "signup",
"promoter_id": "c06d4f0f-ccfb-4d6e-8bed-eea28460b698",
"link_id": "92f75eee-ecc8-47c4-87d9-dea983114fef",
"amount": 10,
"revenue": 0,
"created_at": "2026-04-06T06:23:08.309Z",
"updated_at": "2026-04-06T06:23:08.309Z"
},
"subject": "eb8c32ce-7f3e-4fad-8b61-3c246ef69ba9"
}