Admin Program Created Notification

This object represents the result of an admin program-create operation.


FieldTypeDescription
id_typeNumberID representing a notification type from a predefined catalog.
notificationObjectDynamic object containing data specific to the given id_type.

Example when id_type = 10

{
  "id_type": 10, 
  "notification": {
    "id": 32, 
    "code": "VGM260312102", 
    "name": "TEST 1203", 
    "status": true, 
    "version": 1, 
    "created_at": "2026-03-12", 
    "cutoff_day": 1, 
    "emission_fee": 0, 
    "is_guarantee": false, 
    "interest_rate": 6000, 
    "grace_period_days": 25, 
    "default_interest_rate": 4500, 
    "min_due_payment_multiplier": 700, 
    "withdrawal_commission_rate": 900, 
    "default_interest_commission": 12500, 
    "deferred_purchase_interest_rate": 1400
  }
}

FieldTypeDescription
notification.idNumberId of the created program.
notification.codeStringCode of the created program.
notification.nameStringName of the created program.
notification.statusBooleanStatus of the created program.
notification.versionNumberVersion number of the created program.
notification.created_atStringDate of the program creation.
notification.cutoff_dayNumberBilling cutoff day of the month (1–31).
notification.emission_feeNumberCard emission fee in cents.
notification.is_guaranteeBooleanWhether the program requires a guarantee.
notification.interest_rateNumberAnnual interest rate in basis points.
notification.grace_period_daysNumberNumber of grace period days.
notification.default_interest_rateNumberDefault interest rate in basis points.
notification.min_due_payment_multiplierNumberMultiplier for minimum due payment in basis points.
notification.withdrawal_commission_rateNumberCommission rate for withdrawals in basis points.
notification.default_interest_commissionNumberDefault interest rate in basis points.
notification.deferred_purchase_interest_rateNumberInterest rate for deferred purchases in basis points.