Get quick send trigger status
curl --request GET \
--url https://api.noux.app/api/v1/quick-send/trigger/{id} \
--header 'Authorization: Bearer <token>' \
--header 'authorization: <authorization>'const options = {
method: 'GET',
headers: {authorization: '<authorization>', Authorization: 'Bearer <token>'}
};
fetch('https://api.noux.app/api/v1/quick-send/trigger/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.noux.app/api/v1/quick-send/trigger/{id}"
headers = {
"authorization": "<authorization>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"triggerId": "<string>",
"status": "Queued",
"roomId": "<string>",
"scheduledSendAt": "<string>",
"failureReason": "<string>",
"deliveries": [
{
"inviteeEmail": "<string>",
"sendAt": "<string>",
"status": "Scheduled"
}
]
}{
"error": true,
"code": "PARSE_ERROR",
"message": "<string>"
}{
"error": true,
"code": "PARSE_ERROR",
"message": "<string>"
}Quick send
Get quick send trigger status
Read the outcome of a quick send trigger: whether the room was created, its id, and the status of every scheduled invitation. Authenticate using Bearer token with your Noux API key.
GET
/
api
/
v1
/
quick-send
/
trigger
/
{id}
Get quick send trigger status
curl --request GET \
--url https://api.noux.app/api/v1/quick-send/trigger/{id} \
--header 'Authorization: Bearer <token>' \
--header 'authorization: <authorization>'const options = {
method: 'GET',
headers: {authorization: '<authorization>', Authorization: 'Bearer <token>'}
};
fetch('https://api.noux.app/api/v1/quick-send/trigger/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.noux.app/api/v1/quick-send/trigger/{id}"
headers = {
"authorization": "<authorization>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"triggerId": "<string>",
"status": "Queued",
"roomId": "<string>",
"scheduledSendAt": "<string>",
"failureReason": "<string>",
"deliveries": [
{
"inviteeEmail": "<string>",
"sendAt": "<string>",
"status": "Scheduled"
}
]
}{
"error": true,
"code": "PARSE_ERROR",
"message": "<string>"
}{
"error": true,
"code": "PARSE_ERROR",
"message": "<string>"
}Authorizations
Noux API key from your integration settings
Headers
Bearer token with Noux API key
Path Parameters
The trigger id returned by POST /api/v1/quick-send/trigger
Response
Trigger status retrieved successfully
Queued until the room exists, then RoomCreated or Failed
Available options:
Queued, RoomCreated, Failed Set once the room has been created
ISO timestamp when the invitations are sent
Show child attributes
Show child attributes