---
title: "Get all commissions"
method: GET
path: "/commissions"
tags: ["Commissions"]
---

# Get all commissions

`GET /commissions`

With this endpoint you can list all rewards and commissions assigned to a promotion, promoter, campaign or entire account using the API. 
 <Tip>**HTTP Request** <br/>`GET https://api.firstpromoter.com/api/v2/company/commissions`</Tip>

## Query parameters

- `q` string
- `ids[]` integer[]
- `filters` CommissionFilters
  - `status` 'pending' | 'approved' | 'denied'
  - `paid` 'yes' | 'no' — Paid filter for monetary commissions
  - `fulfilled` 'yes' | 'no' — Fulfilled filter for non-monetary commissions
  - `sale_amount` object
    - `from` integer — Sale amount from
    - `to` integer — Sale amount to
  - `amount` object
    - `from` integer — Amount from
    - `to` integer — Amount to
  - `created_at` object
    - `from` string, date — created_at start date
    - `to` string, date — created_at end date
  - `campaign_id` union — Campaign ids. Can be Integer or Array of Integers
    - integer
    - integer[]
  - `payout_id` union — Payout ids. Can be Integer or Array of Integers
    - integer
    - integer[]
  - `due_period` 'next' | 'overdue' | 'custom' — Due period filter
  - `promoter_id` integer — Promoter id
  - `first_commission` boolean — First commission
  - `refunded` boolean — Refunded reward
  - `fraud_check` 'no_suspicion' | 'same_ip_suspicion' | 'same_promoter_email' | 'ad_source' — Referral fraud check (suspicion). Array accepted
  - `plan_id` union — Plan id
    - integer
    - integer[]
- `sorting` CommissionSorting
  - `sale_amount` 'asc' | 'desc' — The sort by sale direction
  - `amount` 'asc' | 'desc' — The sort by amount direction
  - `created_at` 'asc' | 'desc' — The sort by created_at direction
  - `referral` 'asc' | 'desc' — The sort by referral direction

## Headers

- `Account-ID` string, required

## Response `200`

Successfully retrieved commissions

- Commission[]
  - `id` integer — Commission ID
  - `status` 'pending' | 'approved' | 'denied' — Current status of the commission
  - `metadata` object — Additional metadata about the commission
  - `is_self_referral` boolean, nullable — Whether this is a self-referral
  - `commission_type` 'sale' | 'custom' — Type of commission
  - `created_by_user_email` string, nullable — Email of the user who created the commission
  - `created_by_user_at` string, date-time, nullable — Timestamp when the user created the commission
  - `sale_amount` integer — Amount of the sale
  - `original_sale_amount` integer — Original amount of the sale
  - `original_sale_currency` string, nullable — Currency of the original sale
  - `event_id` string, nullable — ID of the event that generated the commission
  - `plan_id` string, nullable — Plan ID associated with the commission
  - `tier` integer — Reward tier
  - `internal_note` string, nullable — Internal note visible only to the team
  - `external_note` string, nullable — External note visible to the promoter
  - `unit` 'cash' | 'credits' | 'points' | 'free_months' | 'mon_discount' | 'discount_per' — Unit type for the reward
  - `fraud_check` 'no_suspicion' | 'same_ip_suspicion' | 'same_promoter_email' | 'ad_source', nullable — Result of fraud check
  - `amount` integer — Commission amount
  - `is_paid` boolean — Whether the commission has been paid
  - `is_split` boolean — Whether the commission is split among multiple promoters
  - `created_at` string, date-time — Creation timestamp
  - `status_updated_at` string, date-time, nullable — Last status update timestamp
  - `promoter_campaign` object
    - `id` integer — Promoter campaign ID
    - `campaign_id` integer — Campaign ID
    - `promoter_id` integer — Promoter ID
    - `created_at` string, date-time — Creation timestamp
    - `promoter` object
      - `id` integer — Promoter ID
      - `email` string — Promoter email
      - `name` string — Promoter name
    - `campaign` object
      - `id` integer — Campaign ID
      - `name` string — Campaign name
      - `color` string, nullable — Campaign color
  - `referral` object, nullable
    - `id` integer — Referral ID
    - `email` string — Referral email
    - `uid` string — Referral UID
  - `reward` object
    - `id` integer — Reward ID
    - `name` string — Reward name
  - `split_details` object, nullable — Commission split details from the associated referral, when the referral is shared between promoters

## Other responses

- `401` — Unauthorized
- `403` — Forbidden

---

[API](https://skmtc.net/firstpromoter/apis/firstpromoter-batch-processes-api.md) · [All operations](https://skmtc.net/firstpromoter/apis/firstpromoter-batch-processes-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/firstpromoter/firstpromoter-batch-processes-api/versions/e15f0d026ccf/schema)
