ISV ID Indicator

API Explorer
https://test.spinpos.net:443/SPIn/cgi.html
GET

Independent Software Vendors (ISVs) can include their unique ISV ID in SPIn requests sent to the integrated Dejavoo terminal. This identifier helps track transactions, generate detailed reports, and facilitate the rollout of new features tailored to specific ISVs.

By using the ISV ID, merchants and ISVs can gain insights into transaction data while ensuring seamless integration with Dejavoo terminals.

This tag is optional. When included in the transaction request, it is passed through FEED integration, allowing the ISV’s POS application and backend systems to identify which ISV initiated the transaction and associate all relevant details accordingly.

Follow the steps and references outlined in this section to learn how to include the ISV ID in the SPIn requests sent from your POS application.

Request Body

application/xml

Response Body

application/xml

curl -X GET "https://example.com" \  -H "Content-Type: application/xml" \  -d '<request>    <RegisterId/>    <AuthKey/>    <PaymentType>Credit</PaymentType>    <TransType>AddLevel3Item</TransType>    <Amount>10.00</Amount>    <RefId>60</RefId>    <AuthCode>TAS852</AuthCode>    <IsvId>100001</IsvId>    <IsTxnStatusScreenRequired>true</IsTxnStatusScreenRequired>  </request>'
<response>
  <Message>yourMessage</Message>
  <RefId>yourRefId</RefId>
  <RegisterId>yourRegisterId</RegisterId>
  <ResultCode>yourResultCode</ResultCode>
  <RespMSG>yourRespMSG</RespMSG>
  <PaymentType>yourPaymentType</PaymentType>
  <Voided>yourVoided</Voided>
  <TransType>yourTransType</TransType>
  <SN>yourSN</SN>
  <ExtData>yourExtData</ExtData>
</response>