Get a list of premium payment methods

GET /api/v1/static/premium-payment-methods

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • name string
      • value string
GET /api/v1/static/premium-payment-methods
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/static/premium-payment-methods' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "Salary Sacrifice",
      "value": "salary_sacrifice"
    },
    {
      "name": "Salary Deduction",
      "value": "salary_deduction"
    },
    {
      "name": "Direct Debit",
      "value": "direct_debit"
    },
    {
      "name": "Standing Order",
      "value": "standing_order"
    },
    {
      "name": "Cheque",
      "value": "cheque"
    },
    {
      "name": "Bank Transfer",
      "value": "bank_transfer"
    }
  ]
}