Get Raw Message
Path Parameters
idstringRequired
Message ID
const response = await fetch("https://reloop.sh/api/inbox/v1/messages/{id}/raw", {
method: "GET",
headers: {
"Authorization": "Bearer re_123456789",
},
});
const data = await response.json();{
"id": "con_123456789",
"messageId": "example_messageId",
"raw": "example_raw"
}Was this page helpful?