Get Message Logs
curl --request GET \
--url https://karibu.briq.tz/v1/message/logs \
--header 'X-API-Key: <api-key>'import requests
url = "https://karibu.briq.tz/v1/message/logs"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://karibu.briq.tz/v1/message/logs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"user_id": "<string>",
"logs": [
{
"log_id": "<string>",
"message_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"error_details": "<string>",
"response_group_id": 123,
"response_group_name": "<string>",
"response_id": "<string>",
"response_name": "<string>",
"response_description": "<string>",
"campaign_id": "<string>",
"campaign_name": "<string>",
"content": "<string>",
"recipient": "<string>"
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Karibu Messages
Get Message Logs
Fetch all message logs for the authenticated user.
GET
/
v1
/
message
/
logs
Get Message Logs
curl --request GET \
--url https://karibu.briq.tz/v1/message/logs \
--header 'X-API-Key: <api-key>'import requests
url = "https://karibu.briq.tz/v1/message/logs"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://karibu.briq.tz/v1/message/logs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"user_id": "<string>",
"logs": [
{
"log_id": "<string>",
"message_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"error_details": "<string>",
"response_group_id": 123,
"response_group_name": "<string>",
"response_id": "<string>",
"response_name": "<string>",
"response_description": "<string>",
"campaign_id": "<string>",
"campaign_name": "<string>",
"content": "<string>",
"recipient": "<string>"
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}⌘I