Hey! These docs are for version 3.2, which is no longer officially supported. Click here for the latest version, 1.0!

This will perform a capture on the successfully authorized transaction. Use this in case if  auto_capture  was false during the authentication process.

Note:
See the Capture page in the API Reference section for an official description of this API.

Request

The request for the Capture API consists of one Path parameter:   id,  as listed below:
FieldTypeDescription
Header
(-u)
your_api_key*StringAPI key can be obtained from https://merchant.juspay.in/settings/api-key. Provide your API key as the basic auth username value. You do not need to provide a password.
Path
param
id*StringUnique id generated for the transaction in a generate OTP API call.

    * = Required

Example

curl -X POST https://api.juspay.in/v2/txns/:id/capture -u your_api_key:

Response

The response for the Capture API consists of the following parameters and objects:     (click to open table)
ParameterTypeDescription
idStringUnique ID generated by Juspay for the transaction.
order_idStringUnique Identifier for the order provided by you while creating order. Maximum length should be 21 characters.
txn_idStringTransaction ID for a given order.
statusStringStatus of the transaction. If you receive “CHARGED”, then the transaction is successful. “AUTHORIZED” in case if 'auto_capture' is false.
  Status codes and meaning
10

21

24

23

26

27


22


28
NEW
Newly created order
CHARGED
Successful transaction
AUTHORIZED
In cases where 'auto_capture' is false
PENDING_VBV
Authentication is in progress
AUTHENTICATION_FAILED
User did not complete authentication
AUTHORIZATION_FAILED
User completed authentication, but
bank refused the transaction
JUSPAY_DECLINED
User input is not accepted by the
underlying PG
AUTHORIZING
Transaction status is pending from bank
gatewayStringGateway through which authorization process was performed.
createdStringDate/time (ISO representation) when transaction was initiated
resp_codeStringGateway response code for the transaction.
resp_messageStringError message from the gateway in case if the transaction failed.
refundedBooleanTrue if there are any refunds attempted for a given transaction. (Used to enable "refunds" array?)
payment_info:wwwwwwwwn
      {param1, param2, ....}
Object
String
Object containing payment and card details provided during the transaction.
   Payment Info Object Parameters:
FieldTypeDescription
payment_method_typeStringMust be CARD.
payment_methodStringOne of VISA/MASTERCARD/MAESTRO/AMEX/RUPAY.
card:wwwwwwwwwwin
      {param1, param2, ....}
Object
String
Object containing credit/debit card details
  Card Object Parameters:
FieldTypeDescription
last_four_digitsStringLast four digits of card number
card_isinStringInternational Securities Identification Number for card
expiry_monthStringExpiry month of the card (Format: mm) Example: 06
expiry_yearStringExpiry year of the card (Format: yyyy) Example: 2020
name_on_cardStringCard holder name. Should contain alphabetical characters only.
card_typeString"CREDIT" or "DEBIT"
card_issuerStringCode for bank that issued the card
(Example: "HDFC Bank")
card_brandStringBrand of card (MASTERCARD, VISA, etc.)
card_referenceStringReference code for the card
card_fingerprintStringFingerprint code for the card
using_saved_cardBooleanTrue if using a saved card
saved_to_lockerBooleanTrue if card has been saved to locker
payment_gateway_response:
      {param1, param2, ....}
Object
String
This will give the payment response received from the gateway
   Payment Gateway Response Object Parameters:
FieldTypeDescriptionExample
txn_idStringTransaction ID"11327833"
rrnStringAuthorization Retrieval Reference Number"502913366745"
resp_messageStringError message from the gateway in case if the transaction failed."Payment Successful"
resp_codeStringGateway response code for the transaction."0"
epg_txn_idStringElectronic Payment Gateway transaction ID"1532690566017"
createdStringDate time (ISO representation) when transaction was initiated."2020-04-28T06:31:37Z"
auth_id_codeStringAuthorization ID Code"475926"
gateway_response_mapi
    {param1, param2, ....}
Object
String
gateway dependent response parameters
Refunds: [{...},{...},..]
wwwwwwwwwwwwwwwww
Array
wwwwt
An array of Refund Objects with details of each refund attempted for a given transaction (returned only if the refunded parameter is set to "true".
   Refund Object Parameters:
FieldTypeDescription
idStringID generated for the refund
unique_request_idSrtringUnique ID generated for the request
refStringReference number provided by the bank for the refund
amountDoubleAmount refunded (or to be refunded)
createdStringDate time (ISO representation) when transaction was initiated
statusStringStatus of the refund. Can be one of PENDING, SUCCESS, FAILURE, MANUAL_REVIEW (see table below for meaning).
error_messageStringMessage if error occured
sent_to_gatewayBooleanSet to 'true' if request was sent to gateway

StatusMeaning
SUCCESSThis means that the refund has been successfully executed.
PENDINGThis would mean that the refund has been queued with JusPay or with the downstream system.
FAILUREWe were unable to process the refund successfully. You have to try again with new unique_request_id.
MANUAL_REVIEWThis would mean that the refund request was sent an ambigious response from the payment gateway and the merchant has to manually reconcile it with the payment gateway to get the proper response. Also, any refunds which are in pending for more than 10 days are set for manual review.

Example

{
  "id": "txn_035b4e708d5148478828ea3136a9efd7",
  "order_id": ":order_id",
  "txn_id": ":txn_id",
  "status": "CHARGED",
  "gateway": "CYBERSOURCE",
  "created": "2017-05-05T12:12:08Z",
  "resp_code": "00",
  "resp_message": "",
  "payment_info": {
    "payment_method_type": "CARD",
    "payment_method": "VISA",
    "card": {
    "last_four_digits": "",
    "card_isin": "400020",
    "expiry_month": "09",
    "expiry_year": "2020",
    "name_on_card": "",
    "card_type": "",
    "card_issuer": "",
    "card_brand": "VISA",
    "card_reference": "",
    "card_fingerprint": "37sug6sns7p8ubota3md74va3u",
    "using_saved_card": false,
    "saved_to_locker": false
    }
  },
  "payment_gateway_response": {
    "created": "2017-05-05T12:12:42Z",
    "txn_id": ":txn_id",
    "rrn": "",
    "epg_txn_id": ":epg_txn_id",
    "auth_id_code": "",
    "resp_code": "00",
    "resp_message": "",
    "gateway_response_map": {
    //gateway dependent response parameters
    }
  },
  "refunds":[ ]
}
{
  "status": "invalid_request_error",
  "error_code": "invalid",
  "error_message": "Invalid authentication account id."
}
{
  "status": "error",
  "error_code": "access_denied",
  "error_message": "Invalid Authentication"
}