@tax1driver/ts-przelewy24
    Preparing search index...

    Interface NotificationRequest

    Notification request

    NotificationRequest

    interface NotificationRequest {
        amount: number;
        currency: string;
        merchantId: number;
        methodId: number;
        orderId: number;
        originAmount: number;
        posId: number;
        sessionId: string;
        sign: string;
        statement: string;
    }
    Index

    Properties

    amount: number

    Transaction amount expressed in lowest currency unit, e.g. 1.23 PLN = 123

    NotificationRequest

    currency: string

    Currency compatible with ISO, e.g. PLN

    NotificationRequest

    merchantId: number

    Merchant identification number

    NotificationRequest

    methodId: number

    Payment method used by customer

    NotificationRequest

    orderId: number

    Transaction number assigned by P24

    NotificationRequest

    originAmount: number

    Transaction amount expressed in lowest currency unit, e.g. 1.23 PLN = 123

    NotificationRequest

    posId: number

    Shop identification number (defaults to merchant ID)

    NotificationRequest

    sessionId: string

    Unique identifier from merchant's system

    NotificationRequest

    sign: string

    Checksum of parameters: ( {"merchantId": int, "posId": int, "sessionId": "string", "amount": int, "originAmount": int, "currency": "string", "orderId": int, "methodId": int, "statement": string, "crc": "string"} )

    calculated with the use of sha384

    NotificationRequest

    statement: string

    Payment title

    NotificationRequest