Set Invoice Configuration Details


A merchant can perform following Invoice operations using our REST API.


How to set Invoice Configuration Details?

Invoice configuration setting request has to be sent to our REST endpoint i.e. invoiceServices/REST/v1/getinvoiceconfigdetails using POST method.

Merchant requires Auth Token to set Invoice Configuration Details

In our API Specifications you can find a full list of parameters that can be sent in the initial request.


   To set invoice configuration details merchant first needs to generate authentication token and set it in header. To generate auth token please refer Auth token API.

Sample Request

Language:
	

Sample Response

Language:

Hashing Rule

Shimotomo is supporting MD5 Cryptographic Hash for the authenticity of payment request send to the server.


Below is the description of fields use for generating checksum.

  • memberId <Merchant ID as shared by Shimotomo >
  • secureKey <Secure Key that can be generated through Shimotomo's dashboard>

How to generate Checksum ?

Checksum has to be calculated with following combination and need to be send along with the authentication parameters in each server-to-server request:

Generate Invoice:
<memberId>|<membersecurekey>|<merchantRedirectUrl>


Sample Code

Language:
import java.security.MessageDigest
def generateMD5Checksum() {
String values= "11344|secureKey";
MessageDigest digest = MessageDigest.getInstance(MD5)
digest.update(values.bytes);
new BigInteger(1, digest.digest()).toString(16).padLeft(32, '0')
}

Copyright © Shimotomo 2025 . All Rights Reserved