// Create an instance of OkHttpClient
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
// Define the media type for the request
MediaType mediaType = MediaType.parse("application/json");
// Create the request body with the necessary JSON payload using a text block
RequestBody body = RequestBody.create(mediaType, """
{
"messageId": "5d3f62c3-eb8f-4150-8941-bdceb0f429bb",
"to": "254XXXXX",
"from": "254110090747",
"mediaType": "IMAGE",
"mediaUrl": "https://picsum.photos/id/237/200/300",
"caption": ""
}
""");
// Build the request with the required headers
Request request = new Request.Builder()
.url("https://gateway.lipachat.com/api/v1/whatsapp/media")
.method("POST", body)
.addHeader("apiKey", "YOUR_API_KEY")
.addHeader("Content-Type", "application/json")
.build();
// Execute the request and get the response
Response response = client.newCall(request).execute();