Skip to content

Commit f56d9a4

Browse files
Added a new endpoint and example to credit card payment retry
1 parent 4b19dab commit f56d9a4

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.3
2+
3+
- Added a new endpoint and example to credit card payment retry
4+
15
# 1.0.2
26

37
- Added a new endpoint and example to cancel a scheduled Pix payment via Open Finance

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>br.com.efipay.efisdk</groupId>
55
<artifactId>sdk-java-apis-efi</artifactId>
6-
<version>1.0.2</version>
6+
<version>1.0.3</version>
77

88
<name>SDK JAVA APIS EFI</name>
99
<description>Java SDK for integrating with Efí API</description>

src/main/java/br/com/efi/efisdk/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
*/
1313
public class Config {
14-
private final static String version = "1.0.2";
14+
private final static String version = "1.0.3";
1515
private JSONObject conf = new JSONObject();
1616
private JSONObject endpoints = new JSONObject();
1717
private JSONObject urls = new JSONObject();

src/main/resources/config.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,10 @@
181181
"settleCarnetParcel": {
182182
"route": "/v1/carnet/:id/parcel/:parcel/settle",
183183
"method": "put"
184+
},
185+
"cardPaymentRetry": {
186+
"route": "/v1/charge/:id/retry",
187+
"method": "post"
184188
}
185189
}
186190
},

0 commit comments

Comments
 (0)