NAV
  • General information
  • Payments
  • Refunds
  • Payment tokens
  • Receipts
  • Stickers
  • Notifications
  • Payment methods
  • Codes and dictionaries
  • General information

    If you were looking for an old version of the API, it is available at HTTP-protocol.

    Interaction is carried out via HTTPS using GET/POST/PUT methods. The API uses the REST architecture:

    Request headers:

    curl --request POST 'https://paymaster.ru/api/v2/invoices' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    --header 'Idempotency-Key: 86cf125c' \
    --header 'Content-Type: application/json' \
    --header 'Accept: application/json'
    

    In case of an error, the response contains code and the reason (code, message), and the answer may also contain sections with additional details.

    An example of an error response:

    {
      "code": "validation_error",
      "message": "One or many validation errors. See 'errors' list.",
      "errors": [
        "Specify required MerchantId value."
      ]
    }
    

    In requests, mandatory parameters are highlighted in bold.

    Request authentication

    Requests must be transmitted via a secure protocol (https). Base service address: https://paymaster.ru

    The following methods of request authentication are supported:

    Data types

    The following data types are used in the requests:

    A three-letter code according to ISO 4217 is used to encode currencies.

    Working with lists

    Loading lists (payments, refunds, etc.) is made page by page: if there is a pointer to the next page (cursor) in the response, you must request the next part of data. To do this, repeat the request and add a cursor value to the list of parameters.

    Payments

    POST /api/v2/invoices

    Request example:

    curl --request POST 'https://paymaster.ru/api/v2/invoices' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    --header 'Idempotency-Key: 86cf125c' \
    --header 'Content-Type: application/json' \
    --data-raw '{
      "merchantId": "cf128151-127b-44ed-bde5-26c531cad20d",
      "invoice": {
        "description": "test payment",
        "params": {
          "BT_USR": "34"
        }
      },
      "amount": {
        "value": 10.50,
        "currency": "RUB"
      },
      "paymentMethod": "BankCard"   
    }'
    

    Request:

    ParameterTypeDescription
    merchantIdstringMerchant identification
    dualModeboolDMS payments flag (false by default)
    testModeboolTest payments flag (false by default)
    tokenizationTokenization details
    typestringToken type (cof / recurring)
    purposestringSubscription purpose
    callbackUrlstringUrl to notify for token changes
    invoiceInvoice details
    descriptionstringPayments description
    orderNostringOrder number in the merchant system
    expiresdateInvoice expiration date
    paramsAdditional parameters
    amountAmount
    valuedecimalAmount to pay
    currencystringCurrency code
    paymentMethodstringPayment method
    protocolProtocol parameters
    returnUrlstringUser is redirected to this web page after the payment
    callbackUrlstringUrl for payment notification
    customerCustomer data
    emailstringe-mail
    phonestringphone
    ipstringIP address
    accountstringCustomer account
    receiptReceipt details
    clientClient details
    itemsItems list

    Response example:

    {
      "paymentId": "12769",
      "url": "https://paymaster.ru/cpay/a62beecb68c84778b2424294f635b370"  
    }
    

    Response:

    ParameterTypeDescription
    paymentIdstringPayment identification
    urlstringPayment page url, where the user should be redirected for making a payment

    Creating a payment

    POST /api/v2/payments

    Request example:

    curl --request POST 'https://paymaster.ru/api/v2/payments' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    --header 'Idempotency-Key: 86cf125c' \
    --header 'Content-Type: application/json' \
    --data-raw '{
      "merchantId": "cf128151-127b-44ed-bde5-26c531cad20d",
      "invoice": {
        "description": "test payment",
        "params": {
          "BT_USR": "34"
        }
      },
      "amount": {
        "value": 10.50,
        "currency": "RUB"
      },
      "paymentData": {
        "paymentMethod": "BankCard",        
        "card": {
          "pan": "4**********0540",
          "expiry": "10/22",
          "cvc": "***"
        }
      }
    }'
    

    Request:

    ParameterTypeDescription
    merchantIdstringMerchant identification
    dualModeboolDMS payments flag (false by default)
    testModeboolTest payments flag (false by default)
    tokenizationTokenization details
    typestringToken type (cof / recurring)
    purposestringSubscription purpose
    callbackUrlstringUrl to notify for token changes
    invoiceInvoice details
    descriptionstringPayments description
    orderNostringOrder number in the merchant system
    expiresdateInvoice expiration date
    paramsAdditional parameters
    amountAmount
    valuedecimalAmount to pay
    currencystringCurrency code
    paymentDataPayment data
    paymentMethodstringPayment method
    cardCard details
    panstringCard number
    expirystringExpiry date
    cvcstringCVV/CVC2
    dsrp
    typestringType (ApplePay / GooglePay)
    cryptogramstringCryptogram
    ecistringECI
    authorizationCodestringPayment authorization code
    accountstringLogin/account
    phonestringPhone number
    tokenPayment token
    idstringToken identification
    stickerIdstringSticker id (cashlink payment)
    protocolProtocol parameters
    returnUrlstringUser is redirected to this web page after the payment
    callbackUrlstringUrl for payment notification
    threeDSCompleteUrlstringthreeDSCompleteUrl using the scenario 3DSecure Challenge Flow
    customerCustomer data
    emailstringe-mail
    phonestringphone
    ipstringIP address
    accountstringCustomer account
    deviceUser device details
    languagestringLanguage
    acceptHeaderstringAccept header definition
    userAgentstringUserAgent header definition
    colorDepthstringColor depth on bits
    screenHeightstringScreen height in pixels
    screenWidthstringScreen width in pixels
    utcOffsetMinutesstringUTC offset in minutes
    receiptReceipt details
    clientClient details
    itemsItems list

    Parameters for making a payment depend on the payment method chosen.

    Response example:

    {
      "id": "12769",
      "created":"2021-09-01T08:20:00Z",
      "testMode": false,
      "status": "Confirmation",
      "resultCode": "Success",
      "merchantId": "96e809e9-8bce-40fd-86cb-d34db39b4668",
      "amount": {
        "value": 10.5000,
        "currency": "RUB"
      },
      "invoice": {
        "description": "test payment",
        "params": {
          "BT_USR": "34"
        }
      },
      "paymentData": {
        "paymentMethod": "BankCard"
      },
      "confirmation": {
        "type": "ThreeDSv1",
        "acsUrl": "https://paymaster.ru/acs/pareq",
        "PAReq": "eJxVUtuO0...v4BOrji7g=="
      }
    }
    

    Response

    ParameterTypeDescription
    idstringPayment identification
    createddatePayment date
    testModeboolTest payments flag
    statusstringPayment status
    resultCodestringResult code
    messagestringAuthorization result description
    merchantIdstringMerchant identification
    invoiceInvoice details
    descriptionstringPayments description
    orderNostringOrder number in the merchant system
    expiresdateInvoice expiration date
    paramsAdditional parameters
    amountAmount
    valuedecimalAmount to pay
    currencystringCurrency code
    customerCustomer data
    ipstringIP address
    paymentDataPayment data
    paymentMethodstringPayment method
    paymentInstrumentTitlestringPayment instrument title
    agreementstringAgreement reference code
    cardInfoCard BIN details
    brandstringCard brand name
    issuerstringIssuer bank name
    countrystringCountry ISO-code
    typestringCard type (credit, debit)
    categorystringCard category (gold, classic)
    confirmationPayment confirmation method
    typestringConfirmation type
    ***Confirmation parameters
    paymentTokenPayment token data
    idstringToken ID
    expiresdateToken expiration date
    titlestringDescription to be displayed

    Additional confirmation (or several confirmations) may be required during the payment process.

    Payment confirmation in the external system

    ParameterTypeDescription
    typestringConfirmation type External
    paymentUrlstringPayment confirmation address to redirect the user
    universalLinkboolPayment link attribute
    instructionstringPayment instruction

    Payment confirmation with a one-time code

    ParameterTypeDescription
    typestringConfirmation type SmsOtp
    maskedPhonestringTelephone number that receives the confirmation code

    3DS Method scenario

    ParameterTypeDescription
    typestringConfirmation type ThreeDSMethod
    methodUrlstringACS page address to pass the scenario
    transactionIdstringTransaction authentication ID

    3DS Challenge Flow scenario

    ParameterTypeDescription
    typestringConfirmation type ThreeDSChallenge
    acsUrlstringACS page address to pass the scenario
    creqstringChallenge request

    3DS v1 scenario

    ParameterTypeDescription
    typestringConfirmation type ThreeDSv1
    acsUrlstringACS page address to pass the scenario
    PAReqstringPayer Authentication request

    Payment completion

    PUT /api/v2/payments/{id}/complete

    Request example:

    curl --request PUT 'https://paymaster.ru/api/v2/payments/12769/complete' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    --header 'Content-Type: application/json' \
    --data-raw '{
      "PARes": "eJx7v3u...IxsAwA="  
    }'
    

    Request:

    ParameterTypeDescription
    idstringPayment identification
    codestringConfirmation code
    threeDSCompIndstring3DS Method complete indicator
    cresstringChallenge response
    PAResstringPayer Authentication response

    In response service returns the payment details.

    Payment capture

    PUT /api/v2/payments/{id}/confirm

    Request example:

    curl --request PUT 'https://paymaster.ru/api/v2/payments/12769/confirm' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    --header 'Content-Type: application/json' \
    --data-raw '{
      "amount": {
        "value": 10.50,
        "currency": "RUB"
      }
    }'
    

    Request:

    ParameterTypeDescription
    idstringPayment identification
    amountAmount
    valuedecimalAmount to pay
    currencystringCurrency code
    receiptReceipt details
    clientClient details
    itemsItems list

    If the request is successful, the service returns an empty response with HTTP status 200.

    Payment cancellation

    PUT /api/v2/payments/{id}/cancel

    Request example:

    curl --request PUT 'https://paymaster.ru/api/v2/payments/12769/cancel' \
    --header 'Authorization: Bearer QdvdwiXKFm='
    

    If the request is successful, the service returns an empty response with HTTP status 200.

    Getting payment details

    GET /api/v2/payments/{id}

    Request example:

    curl --request GET 'https://paymaster.ru/api/v2/payments/12769' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    

    Request:

    ParameterTypeDescription
    idstringPayment identification

    The service returns payment details in the response.

    List of payments

    GET /api/v2/payments?merchantId={merchantId}&start={start}&end={end

    Request example:

    curl --request GET 'https://paymaster.ru/api/v2/payments?merchantId=cf128151-127b-44ed-bde5-26c531cad20d&start=2021-08-01T06:00:00Z&end=2021-08-01T06:30:00Z'  \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    

    Request:

    ParameterTypeDescription
    merchantIdstringMerchant identification
    startdatePeriod starts
    enddatePeriod ends

    Response example:

    {
      "items": [
        {
          "id": "9755",
          "status": "Settled",
          "created":"2021-08-01T06:15:00Z",
          "merchantId": "96e809e9-8bce-40fd-86cb-d34db39b4668",
          "amount": {
            "value": 10.0000,
            "currency": "RUB"
          },
          "invoice": {
            "description": "test"
          },
          "paymentData": {
            "paymentMethod": "BankCard",
            "paymentInstrumentTitle": "410000XXXXXXX0000"
          }
        }
      ]
    }
    

    Response:

    ParameterTypeDescription
    idstringPayment identification
    createddatePayment date
    statusstringPayment status
    merchantIdstringMerchant identification
    invoiceInvoice details
    descriptionstringPayment description
    orderNostringOrder number in the merchant system
    expiresdateInvoice expiration date
    amountAmount
    valuedecimalAmount to pay
    currencystringCurrency code
    paymentDataPayment data
    paymentMethodstringPayment method
    paymentInstrumentTitlestringPayment instrument title

    Refunds

    Creating a refund

    POST /api/v2/refunds

    Request example:

    curl --request POST 'https://paymaster.ru/api/v2/refunds' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    --header 'Idempotency-Key: 86cf125c' \
    --header 'Content-Type: application/json' \
    --data-raw '{
      "paymentId": "12870",
      "amount": {
        "value": 5.5,
        "currency": "RUB"
      }
    }'
    

    Request:

    ParameterTypeDescription
    paymentIdstringPayment identification
    amountRefund amount
    valuedecimalRefund amount value
    currencystringCurrency code
    receiptReceipt details
    clientClient details
    itemsItems list

    Response example:

    {
      "id": "1276",
      "created": "2021-10-01T06:23:02.273Z",
      "status": "Pending",
      "paymentId": "12870",
      "amount": {
        "value": 5.5,
        "currency": "RUB"
      }
    }
    

    Response

    ParameterTypeDescription
    idstringRefund identification
    createddateRefund date
    paymentIdstringPayment identification
    amountRefund amount
    valuedecimalRefund amount value
    currencystringCurrency code
    statusstringRefund status
    resultCodestringResult code

    Refund details

    GET /api/v2/refunds/{id}

    Request example:

    curl --request GET 'https://paymaster.ru/api/v2/refunds/1276' \
    --header 'Authorization: Bearer QdvdwiXKFm='
    

    Request:

    ParameterTypeDescription
    idstringRefund identification

    The service returns the refund details in the response.

    Payment tokens

    Token details

    GET /api/v2/paymenttokens/{id}

    Request example:

    curl --request GET 'https://paymaster.ru/api/v2/paymenttokens/8cd9991b47ab42018f0bb56ca0fbdba0' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    

    Request:

    ParameterTypeDescription
    idstringToken identifier

    Response example:

    {
      "id": "8cd9991b47ab42018f0bb56ca0fbdba0",
      "status": "Active",
      "title": "410000XXXXXX0001",
      "expires": "2022-10-31T23:59:59Z"
    }
    

    Response

    ParameterTypeDescription
    idstringToken identifier
    statusstringToken status (Active / Revoked)
    titlestringDisplay name
    expiresdateToken expire date
    cardInfoCard BIN details
    brandstringCard brand name
    issuerstringIssuer bank name
    countrystringCountry ISO-code
    typestringCard type (credit, debit)
    categorystringCard category (gold, classic)

    Token revocation

    PUT /api/v2/paymenttokens/{id}/revoke

    Request example:

    curl --request PUT 'https://paymaster.ru/api/v2/paymenttokens/8cd9991b47ab42018f0bb56ca0fbdba0/revoke' \
    --header 'Authorization: Bearer QdvdwiXKFm='
    

    Request:

    ParameterTypeDescription
    idstringToken identifier

    HTTP 200 status shows the successful completion of the request.

    Receipts

    Creating a receipt

    POST /api/v2/receipts

    Request example:

    curl --request POST 'https://paymaster.ru/api/v2/receipts' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    --header 'Idempotency-Key: 86cf125c' \
    --header 'Content-Type: application/json' \
    --data-raw '{
      "paymentId": "13167",
      "amount": {
        "value": 10,
        "currency": "RUB"
      },
      "type": "Payment",
      "client": {
        "email": "customer@gmail.com"
      },
      "items": [{
          "name": "Apples",
          "quantity": 1,
          "price": 10,
          "vatType": "Vat120",
          "paymentSubject": "Commodity",
          "paymentMethod": "FullPrepayment"
        }
      ]
    }'
    

    Request

    ParameterTypeDescription
    paymentIdstringPayment identification
    amountReceipt amount
    valuedecimalAmount value
    currencystringCurrency code
    typestringReceipt type
    clientClient details
    emailstringClient e-mail
    phonestringClient telephone
    namestringCompany name
    innstringCompany TIN
    itemsItems list
    namestringName
    quantitydecimalQuantity
    pricedecimalPrice
    measurestringProduct measure
    excisedecimalExcise
    product
    countrystringCountry origin code
    declarationstringTax declaration number
    vatTypestringVAT type
    paymentSubjectstringPayment subject
    paymentMethodstringPayment method
    markingMarking details
    codestringProduct code
    quantityFractional quantity data
    numeratorintNumerator
    denominatorintDenominator
    agentTypestringAgent type
    supplierSupplier details
    namestringSupplier name
    innstringSupplier TIN
    phonestringSupplier telephone

    Response example:

    {
      "id": "1860",
      "created": "2021-11-02T09:54:35.45Z",
      "paymentId": "13167",
      "amount": {
        "value": 10.0,
        "currency": "RUB"
      },
      "type": "Payment",
      "status": "Pending"
    }
    

    Response

    ParameterTypeDescription
    idstringReceipt identification
    createddateCreation date
    paymentIdstringPayment identification
    amountReceipt amount
    valuedecimalAmount value
    currencystringCurrency code
    typestringReceipt type
    statusstringReceipt registration status

    Getting receipt details

    GET /api/v2/receipts/{id}

    Request example:

    curl --request GET 'https://paymaster.ru/api/v2/receipts/1860' \
    --header 'Authorization: Bearer QdvdwiXKFm='
    

    Request:

    ParameterTypeDescription
    idstringReceipt identification

    The service returns receipt details in the response.

    Список чеков

    GET /api/v2/receipts?paymentId={paymentId}

    Request example:

    curl --request GET 'https://paymaster.ru/api/v2/receipts?paymentId=22504'  \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    

    Request:

    ParameterTypeDescription
    paymentIdstringPayment id

    The response will contain the list of receipt details

    Stickers

    Sticker registration

    POST /api/v2/stickers

    Request example:

    curl --request POST 'https://paymaster.ru/api/v2/stickers' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    --header 'Idempotency-Key: 86cf125c' \
    --header 'Content-Type: application/json' \
    --data-raw '{
      "merchantId": "cf128151-127b-44ed-bde5-26c531cad20d",
      "stickerType": "Sbp",
      "productCode": "product-1234",
      "paymentPurpose": "Payment for the product",
      "description": "Product #1234",
      "amount": {
        "value": 39.90,
        "currency": "RUB"
      }
    }'
    

    Request:

    ParameterTypeDescription
    merchantIdstringMerchant identification
    stickerTypestringSticker type (example, Sbp)
    cashlinkboolCashlink mode
    descriptionstringSticker description
    productCodestringProduct code
    paymentPurposestringPayment purpose
    amountAmount
    valuedecimalAmount to pay
    currencystringCurrency code
    callbackUrlstringUrl for payment notification

    Response example:

    {
      "id": "24cc565dea08",
      "stickerType": "Sbp",
      "productCode": "product-1234",
      "paymentPurpose": "Payment for the product",
      "description": "Product #1234",
      "amount": {
        "value": 39.90,
        "currency": "RUB"
      },
      "status": "Active",
      "payload": "https://qr.nspk.ru/AS****G0?type=01&sum=3990&cur=RUB&crc=ZZZZ"
    }
    

    Response

    ParameterTypeDescription
    idstringSticker identification
    stickerTypestringSticker type
    cashlinkboolCashlink mode
    productCodestringProduct code
    paymentPurposestringPayment purpose
    descriptionstringSticker description
    amountAmount
    valuedecimalAmount to pay
    currencystringCurrency code
    statusstringSticker status
    payloadstringContent (payment link)

    Sticker activation / deactivation

    PUT /api/v2/stickers/{id}

    Request example:

    curl --request PUT 'https://paymaster.ru/api/v2/stickers/24cc565dea08' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    --header 'Content-Type: application/json' \
    --data-raw '{
      "active": true
    }'
    

    Request:

    ParameterTypeDescription
    idstringSticker identification
    activeboolSticker status

    HTTP 200 status shows the successful completion of the request.

    Getting sticker details

    GET /api/v2/stickers/{id}

    Request example:

    curl --request GET 'https://paymaster.ru/api/v2/stickers/24cc565dea08' \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    

    Request:

    ParameterTypeDescription
    idstringSticker identification

    The service returns sticker details in the response.

    List of stickers

    GET /api/v2/stickers?merchantId={merchantId}

    Request example:

    curl --request GET 'https://paymaster.ru/api/v2/stickers?merchantId=cf128151-127b-44ed-bde5-26c531cad20d'  \
    --header 'Authorization: Bearer QdvdwiXKFm=' \
    

    Request:

    ParameterTypeDescription
    merchantIdstringMerchant identification

    Response example:

    {
      "items": [
        {
          "id": "24cc565dea08",
          "stickerType": "Sbp",
          "productCode": "product-1234",
          "paymentPurpose": "Payment for the product",
          "description": "Product #1234",
          "amount": {
            "value": 39.90,
            "currency": "RUB"
          },
          "status": "Active",
          "payload": "https://qr.nspk.ru/AS****G0?type=01&sum=3990&cur=RUB&crc=ZZZZ"
        }
      ]
    }
    

    Ответ:

    ParameterTypeDescription
    itemsarrayList of stickers

    Notifications

    Payment status

    POST {callbackUrl}

    Request example:

    curl --request POST 'https://merchant-site.com/payments/result' \
    --header 'Content-Type: application/json' \
    --data-raw '{
      "id": "12769",
      "created":"2021-09-01T08:20:00Z",
      "testMode": false,
      "status": "Settled",
      "merchantId": "96e809e9-8bce-40fd-86cb-d34db39b4668",
      "amount": {
        "value": 10.5000,
        "currency": "RUB"
      },
      "invoice": {
        "description": "test payment",
        "params": {
          "BT_USR": "34"
        }
      },
      "paymentData": {
        "paymentMethod": "BankCard",
        "paymentInstrumentTitle": "410000XXXXXXX0000"
      }
    }'
    

    Request:

    ParameterTypeDescription
    idstringPayment identification
    createddatePayment date
    testModeboolTest payments flag
    statusstringPayment status
    merchantIdstringMerchant identification
    invoiceInvoice details
    descriptionstringPayments description
    orderNostringOrder number in the merchant system
    expiresdateInvoice expiration date
    paramsAdditional parameters
    amountAmount
    valuedecimalAmount to pay
    currencystringCurrency code
    paymentDataPayment data
    paymentMethodstringPayment method
    paymentInstrumentTitlestringPayment instrument title

    Payment token status

    POST {callbackUrl}

    Request example:

    curl --request POST 'https://merchant-site.com/tokens/result' \
    --header 'Content-Type: application/json' \
    --data-raw '{
      "id": "8cd9991b47ab42018f0bb56ca0fbdba0",
      "status": "Active",
      "title": "410000XXXXXX0001",
      "expires": "2022-10-31T23:59:59Z"
    }'
    

    Request:

    ParameterTypeDescription
    idstringToken identifier
    statusstringToken status (Active / Revoked)
    titlestringDisplay name
    expiresdateToken expire date

    Payment methods

    AliasName
    bankcardBank card
    sbpQuick payment system
    qiwiQIWI

    Codes and dictionaries

    Error codes

    CodeDescription
    validation_errorIncorrect request format
    not_authorizedNot enough user rights for the operation
    idempotency_key_violationIdempotency key violation
    invalid_operationRequest is rejected
    payment_token_revokedPayment token is revoked
    payment_token_blockedPayment token is locked out

    Payment status

    CodeDescription
    AuthorizedPayment is authorized
    SettledPayment is settled
    CancelledPayment is cancelled
    RejectedPayment is rejected
    ConfirmationAdditional confirmation is required
    PendingPayment is pending

    Refund status

    CodeDescription
    SuccessRefund is successful
    RejectedRefund is rejected
    PendingRefund is pending

    Authorization code

    CodeDescription
    TransactionDeclinedTransaction authorization is declined
    IssuerUnavailableIssuer is not available
    RejectedByFraudRejected by fraud monitoring
    InvalidAmountInvalid amount
    InvalidAccountIncorrect card number / card does not exist
    BlockedAccountCard is blocked (lost)
    OperationNotAllowedOperation is not allowed
    InsufficientFundsInsufficient funds
    ExpiredAccountExpired card date / incorrect card date
    PaymentLimitExceededPayment limit exceeded
    PaymentCountExceededPayment count exceeded
    CardNotEnrolledCard is not enrolled for 3DS
    ThreeDSecureFailed3DS authentication is not passed
    CancelledByUserUser cancelled the payment
    PaymentExpiredPayment expired

    Receipt registration status

    CodeDescription
    SuccessReceipt is registered successfully
    RejectedReceipt is rejected for registration
    CancelledReceipt registration is cancelled
    PendingReceipt registration is pending

    Receipt type

    CodeDescription
    PaymentPayment
    RefundPayment refund

    VAT type

    CodeDescription
    NoneNo VAT
    Vat0VAT 0%
    Vat10VAT 10%
    Vat20VAT 20%
    Vat110VAT formula 10/110
    Vat120VAT formula 20/120

    Agent type

    CodeDescription
    BankPaymentAgentBank payment agent
    BankPaymentSubagentBank payment subagent
    PaymentAgentPayment agent
    PaymentSubagentPayment subagent
    AttorneyAttorney
    CommissionerCommissioner
    AgentAgent

    Types of goods/services

    CodeDescription
    CommodityCommodity
    ExciseExcise
    JobJob
    ServiceService
    GamblingGambling
    LotteryLottery
    IntellectualActivityIntellectual activity
    PaymentPayment
    AgentFeeAgent fee
    PropertyRightsProperty rights
    NonOperatingIncomeNon operating income
    InsurancePaymentInsurance payment
    SalesTaxSales tax
    ResortFeeResort fee
    OtherOther

    Payment type

    CodeDescription
    FullPrepaymentFull prepayment
    PartialPrepaymentPartial prepayment
    AdvanceAdvance
    FullPaymentFull payment
    PartialPaymentPartial payment
    CreditCredit

    Measure

    CodeDescription
    PiecePiece
    GramGram
    KilogramKilogram
    TonneTonne
    CentimeterCentimeter
    DecimeterDecimeter
    MeterMeter
    SquareCentimeterSquare Centimeter
    SquareDecimeterSquare Decimeter
    SquareMeterSquare Meter
    MillilitreMillilitre
    LitreLitre
    QubicMeterQubic Meter
    KilowattHourKilowatt * Hour
    GigacalGigacalorie
    DayDay
    HourHour
    MinuteMinute
    SecondSecond
    KilobyteKilobyte
    MegabyteMegabyte
    GigabyteGigabyte
    TerabyteTerabyte
    OtherOther