Skip to content

GET Get Prop Program Payer Accounts

Endpoint

GET /prop/programs/{id}/payer-accounts

Description

Returns customer accounts with eligibility information for a specific prop program purchase.

Authorization

Available for authenticated customer sessions.

Path Parameters

Name Type Required Description
id int Yes Prop program id

Response Example

{
  "rows": [
    {
      "login": 100001,
      "currency": "USD",
      "balance": 1200,
      "eligible": true,
      "block_reason": null,
      "block_reason_message": null
    },
    {
      "login": 100002,
      "currency": "EUR",
      "balance": 800,
      "eligible": false,
      "block_reason": "CURRENCY_CONVERSION_REQUIRED",
      "block_reason_message": "Program and payer account currencies must match"
    }
  ]
}

block_reason uses the same stable codes as PreviewPropChallenge, including PAYER_ACCOUNT_NOT_REAL, CURRENCY_CONVERSION_REQUIRED, and NOT_ENOUGH_FUNDS.