Create SDK Order

Create Order SDK Integration

This is specifically used to generate a token when the user’s backend is in JAVA and they are using any Mobile SDK.

Merchants can use the CreateSdkOrderRequest Builder to create the request and the following are the attributes that merchant can pass.

SDK Order Request Builder

Parameters

Parameter nameData TypeMandatoryDescriptionConstraints
merchantOrderIdStringYesUnique merchant order id generated by merchantMax Length = 63 characters
amountLongYes
Amount of order in Paisa
Min value = 100 (in paise), Max value = order amount
redirectUrlStringYesThe URL to which the user should be redirected after the payment is completed

Example Usage :

import com.phonepe.sdk.pg.Env;
import com.phonepe.sdk.pg.payments.v2.StandardCheckoutClient;
import com.phonepe.sdk.pg.payments.v2.models.request.CreateSdkOrderRequest;
import com.phonepe.sdk.pg.payments.v2.models.response.CreateSdkOrderResponse;
import java.util.UUID;
 
String clientId = "<clientId>";
String clientSecret = "<clientSecret>";
Integer clientVersion = 1;  //insert your client version here
Env env = Env.SANDBOX;      //change to Env.PRODUCTION when you go live
StandardCheckoutClient client = StandardCheckoutClient.getInstance(clientId, clientSecret,
        clientVersion, env);
 
 
String merchantOrderId = UUID.randomUUID()
        .toString();
long amount = 100;
String redirectUrl = "https://www.merchant.com/redirect";
 
CreateSdkOrderRequest createSdkOrderRequest = CreateSdkOrderRequest.StandardCheckoutBuilder()
        .merchantOrderId(merchantOrderId)
        .amount(amount)
        .redirectUrl(redirectUrl)
        .build();
 
CreateSdkOrderResponse createSdkOrderResponse = client.createSdkOrder(createSdkOrderRequest);
String token = createSdkOrderResponse.getToken();

Returns :

The function returns a CreateOrderResponse object with the following properties:

AttributeData TypeDescription
orderIdStringOrder ID generated by PhonePe
stateStringState of the Order. Initially it will be PENDING
expireAtLongExpiry time in epoch
tokenStringToken used by the merchant app to initiate order