Skip to content

Commit eb789df

Browse files
committed
feat: Add Custom Request examples
1 parent b8ea61f commit eb789df

File tree

7 files changed

+230
-0
lines changed

7 files changed

+230
-0
lines changed

src/main/java/AggregateSnippets.java

+1
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ private static String toHeadingTitle(String title) {
152152
.replace("Verify\n", "Verify (Legacy)\n")
153153
.replace("Verify2", "Verify v2")
154154
.replace("Whatsapp", "WhatsApp")
155+
.replace("Json", "JSON")
155156
.replace("Simswap", "SIM Swap")
156157
.replace("Callncco", "Call NCCO");
157158
for (var ac : acronyms) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/*
2+
* Copyright 2025 Vonage
3+
*
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
*
11+
* The above copyright notice and this permission notice shall be included in
12+
* all copies or substantial portions of the Software.
13+
*
14+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
* THE SOFTWARE.
21+
*/
22+
package com.vonage.quickstart.custom;
23+
24+
import com.vonage.client.VonageClient;
25+
import static com.vonage.quickstart.EnvironmentVariables.*;
26+
27+
public class DeleteRequest {
28+
public static void main(String[] args) throws Exception {
29+
VonageClient client = VonageClient.builder()
30+
.apiKey(VONAGE_API_KEY)
31+
.apiSecret(VONAGE_API_SECRET)
32+
.build();
33+
34+
client.getCustomClient().delete("https://api.nexmo.com/v3/media/:id");
35+
}
36+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Copyright 2025 Vonage
3+
*
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
*
11+
* The above copyright notice and this permission notice shall be included in
12+
* all copies or substantial portions of the Software.
13+
*
14+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
* THE SOFTWARE.
21+
*/
22+
package com.vonage.quickstart.custom;
23+
24+
import com.vonage.client.VonageClient;
25+
import static com.vonage.quickstart.EnvironmentVariables.*;
26+
27+
public class GetRequestBinary {
28+
public static void main(String[] args) throws Exception {
29+
VonageClient client = VonageClient.builder()
30+
.apiKey(VONAGE_API_KEY)
31+
.apiSecret(VONAGE_API_SECRET)
32+
.build();
33+
34+
byte[] response = client.getCustomClient().get("https://api.nexmo.com/v3/media/:id");
35+
System.out.println(response.length);
36+
}
37+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
* Copyright 2025 Vonage
3+
*
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
*
11+
* The above copyright notice and this permission notice shall be included in
12+
* all copies or substantial portions of the Software.
13+
*
14+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
* THE SOFTWARE.
21+
*/
22+
package com.vonage.quickstart.custom;
23+
24+
import com.vonage.client.VonageClient;
25+
import com.vonage.client.account.BalanceResponse;
26+
import static com.vonage.quickstart.EnvironmentVariables.*;
27+
28+
public class GetRequestJsonable {
29+
public static void main(String[] args) throws Exception {
30+
VonageClient client = VonageClient.builder()
31+
.apiKey(VONAGE_API_KEY)
32+
.apiSecret(VONAGE_API_SECRET)
33+
.build();
34+
35+
BalanceResponse response = client.getCustomClient().get("https://rest.nexmo.com/account/get-balance");
36+
System.out.println("€" + response.getValue());
37+
}
38+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* Copyright 2025 Vonage
3+
*
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
*
11+
* The above copyright notice and this permission notice shall be included in
12+
* all copies or substantial portions of the Software.
13+
*
14+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
* THE SOFTWARE.
21+
*/
22+
package com.vonage.quickstart.custom;
23+
24+
import com.vonage.client.VonageClient;
25+
import static com.vonage.quickstart.EnvironmentVariables.*;
26+
import java.util.Map;
27+
28+
@SuppressWarnings("unchecked")
29+
public class GetRequestMap {
30+
public static void main(String[] args) throws Exception {
31+
VonageClient client = VonageClient.builder()
32+
.apiKey(VONAGE_API_KEY)
33+
.apiSecret(VONAGE_API_SECRET)
34+
.build();
35+
36+
Map<String, ?> response = client.getCustomClient().get("https://rest.nexmo.com/account/get-balance");
37+
System.out.println("€" + response.get("value"));
38+
}
39+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Copyright 2025 Vonage
3+
*
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
*
11+
* The above copyright notice and this permission notice shall be included in
12+
* all copies or substantial portions of the Software.
13+
*
14+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
* THE SOFTWARE.
21+
*/
22+
package com.vonage.quickstart.custom;
23+
24+
import com.vonage.client.VonageClient;
25+
import static com.vonage.quickstart.EnvironmentVariables.*;
26+
27+
public class GetRequestString {
28+
public static void main(String[] args) throws Exception {
29+
VonageClient client = VonageClient.builder()
30+
.apiKey(VONAGE_API_KEY)
31+
.apiSecret(VONAGE_API_SECRET)
32+
.build();
33+
34+
String response = client.getCustomClient().get("https://example.com");
35+
System.out.println(response);
36+
}
37+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* Copyright 2025 Vonage
3+
*
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
*
11+
* The above copyright notice and this permission notice shall be included in
12+
* all copies or substantial portions of the Software.
13+
*
14+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
* THE SOFTWARE.
21+
*/
22+
package com.vonage.quickstart.custom;
23+
24+
import com.vonage.client.VonageClient;
25+
import static com.vonage.quickstart.EnvironmentVariables.*;
26+
import java.util.Map;
27+
28+
@SuppressWarnings("unchecked")
29+
public class PostRequestMap {
30+
public static void main(String[] args) throws Exception {
31+
VonageClient client = VonageClient.builder()
32+
.apiKey(VONAGE_API_KEY)
33+
.apiSecret(VONAGE_API_SECRET)
34+
.build();
35+
36+
Map<String, ?> response = client.getCustomClient().post(
37+
"https://api.nexmo.com/beta/chatapp-accounts/messenger/100614398987044/applications",
38+
Map.of("application", VONAGE_APPLICATION_ID)
39+
);
40+
System.out.println(response);
41+
}
42+
}

0 commit comments

Comments
 (0)