A list of all methods in the EscrowAccountService service. Click on the method name to view detailed information about that method.
| Methods | Description |
|---|---|
| finishPaymentEscrowInTheEscrowAccount |
- HTTP Method:
POST - Endpoint:
/v3/escrow/{id}/finish
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | String | ✅ | Unique payment escrow identifier in Asaas |
| input | Object | ❌ | Request Body |
Return Type
PaymentGetResponseDto
Example Usage Code Snippet
import com.asaas.apisdk.AsaasSdk;
import com.asaas.apisdk.config.ApiKeyAuthConfig;
import com.asaas.apisdk.config.AsaasSdkConfig;
import com.asaas.apisdk.models.PaymentGetResponseDto;
public class Main {
public static void main(String[] args) {
AsaasSdkConfig config = AsaasSdkConfig.builder()
.apiKeyAuthConfig(ApiKeyAuthConfig.builder().apiKey("YOUR_API_KEY").build())
.build();
AsaasSdk asaasSdk = new AsaasSdk(config);
PaymentGetResponseDto response = asaasSdk.escrowAccount.finishPaymentEscrowInTheEscrowAccount(
"4f468235-cec3-482f-b3d0-348af4c7194",
new Object()
);
System.out.println(response);
}
}