List delivery attempts
curl --request GET \
--url https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts \
--header 'Authorization: <api-key>'import requests
url = "https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "<string>",
"status": true,
"data": [
{
"api_version": "<string>",
"created_at": "<string>",
"deleted_at": "<string>",
"endpoint_id": "<string>",
"error": "<string>",
"http_status": "<string>",
"ip_address": "<string>",
"method": "<string>",
"msg_id": "<string>",
"project_id": "<string>",
"request_http_header": {},
"requested_at": "<string>",
"responded_at": "<string>",
"response_data": "<string>",
"response_http_header": {},
"status": true,
"uid": "<string>",
"updated_at": "<string>",
"url": "<string>"
}
]
}{
"message": "<string>",
"status": true,
"data": {}
}{
"message": "<string>",
"status": true,
"data": {}
}{
"message": "<string>",
"status": true,
"data": {}
}Delivery Attempts
List delivery attempts
This endpoint fetches an app message’s delivery attempts
GET
/
v1
/
projects
/
{projectID}
/
eventdeliveries
/
{eventDeliveryID}
/
deliveryattempts
List delivery attempts
curl --request GET \
--url https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts \
--header 'Authorization: <api-key>'import requests
url = "https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us.getconvoy.cloud/api/v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "<string>",
"status": true,
"data": [
{
"api_version": "<string>",
"created_at": "<string>",
"deleted_at": "<string>",
"endpoint_id": "<string>",
"error": "<string>",
"http_status": "<string>",
"ip_address": "<string>",
"method": "<string>",
"msg_id": "<string>",
"project_id": "<string>",
"request_http_header": {},
"requested_at": "<string>",
"responded_at": "<string>",
"response_data": "<string>",
"response_http_header": {},
"status": true,
"uid": "<string>",
"updated_at": "<string>",
"url": "<string>"
}
]
}{
"message": "<string>",
"status": true,
"data": {}
}{
"message": "<string>",
"status": true,
"data": {}
}{
"message": "<string>",
"status": true,
"data": {}
}Was this page helpful?
⌘I