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

Payment/Deposit Request

Parameter
ParameterTypeDescriptionExample
SecretKeystringPrivate key used to make digital signature, provided by Inticoressstitsecret
MerchantCodestringMerchant code, provided by InticoreF00021
RefNostringUnique merchant transaction ID1234567890
AmountnumberTransaction amount (without separator and decimal)300000
CurrencystringCurrency used (only accept IDR)IDR
Generating Process
The fields must set in the following order:
(SecretKey & MerchantCode & RefNo & Amount & Currency)
Example:
SecretKey = ssstitsecret
MerchantCode = F00021
RefNo = 1234567890
Amount = 300000 (Note: 300000 represented 300.000 IDR amount)
Currency = IDR
The hash would be calculated on the following string:
ssstitsecretF000211234567890300000IDR
The resulting has signature value equals to (using SHA1 base64 hash algorithm)
SMc6iY3Oqjnhhj6h3r8AfypjQnU=
Previous
Document Versioning
Next
Transfer/Disbursement Request
Built with