Automation
Post v1automationdead letters retry
POST
/
v1
/
automation
/
dead-letters
/
{dlqID}
/
retry
cURL
curl --request POST \
--url https://api.wazapin.com/v1/automation/dead-letters/{dlqID}/retryconst options = {method: 'POST'};
fetch('https://api.wazapin.com/v1/automation/dead-letters/{dlqID}/retry', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.wazapin.com/v1/automation/dead-letters/{dlqID}/retry"
response = requests.post(url)
print(response.text){
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"message": "<string>",
"code": "<string>",
"field": "<string>",
"location": "<string>"
}
],
"request_id": "<string>"
}
}Path Parameters
Response
No Content
⌘I
cURL
curl --request POST \
--url https://api.wazapin.com/v1/automation/dead-letters/{dlqID}/retryconst options = {method: 'POST'};
fetch('https://api.wazapin.com/v1/automation/dead-letters/{dlqID}/retry', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.wazapin.com/v1/automation/dead-letters/{dlqID}/retry"
response = requests.post(url)
print(response.text){
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"message": "<string>",
"code": "<string>",
"field": "<string>",
"location": "<string>"
}
],
"request_id": "<string>"
}
}