Skip to main content
Entity IDTo retrieve your entity_id, use List Portfolios.
Use the Prime SDK or CLI to test this endpoint by following the quickstart guide and running with the following examples
PaymentMethodsService paymentMethodsService = PrimeServiceFactory.createPaymentMethodsService(client);

GetEntityPaymentMethodRequest request = new GetEntityPaymentMethodRequest.Builder()
    .entityId("ENTITY_ID_HERE")
    .paymentMethodId("PAYMENT_METHOD_ID_HERE")
    .build();

GetEntityPaymentMethodResponse response = paymentMethodsService.getEntityPaymentMethod(request);
For more information, please visit the Prime Java SDK.