Inticore API Documentation
  1. Guidance for Generating Signature
Inticore API Documentation
  • General
    • Introduction
    • API Base URL
    • Response Code List
    • Document Versioning
  • Guidance for Generating Signature
    • Payment/Deposit Request
    • Transfer/Disbursement Request
    • Check Transaction
    • Merchant Balance
    • Callback Notification
  • Transactions
    • Payment/Deposit Request
      POST
    • Transfer/Disbursement Request
      POST
    • Check Transaction
      POST
    • Callback Notification
      POST
  • Products
    • Product/Channel List
      GET
  • Balance
    • Merchant Balance
      POST
  1. Guidance for Generating Signature

Callback Notification

💡
This signature is generated by system, sent to merchant backend URL in the payload of Signature parameter
Parameter
ParameterTypeDescriptionExample
SecretKeystringPrivate key used to make digital signature, provided by Inticoressstitsecret
MerchantCodestringMerchant code, provided by InticoreF00021
PaymentIdintegerPayment channel ID18
RefNostringUnique merchant transaction ID1234567890
AmountnumberTransaction amount (without separator and decimal)300000
CurrencystringCurrency used (only accept IDR)IDR
StatusstringPayment transaction status as follows : SUCCESS, PENDING or FAILEDSUCCESS
Generating Process
The fields is set in the following order:
(SecretKey & MerchantCode & PaymentId & RefNo & Amount & Currency &
Status
Example:
SecretKey = ssstitsecret
MerchantCode = F00021
PaymentId = 18
RefNo = 1234567890
Amount = 300000
Currency = IDR
Status = SUCCESS
The hash would be calculated on the following string:
ssstitsecretF00021181234567890300000IDRSUCCESS
The resulting has signature value equals to (using SHA1 base64 hash algorithm)
A7KwRYib8C2SraAEYYG2Am79Dgk=
Previous
Merchant Balance
Next
Payment/Deposit Request
Built with