curl --request POST \
--url https://api.quivo.co/notifications/test-email \
--header 'Content-Type: application/json' \
--data '
{
"contents": [
{
"title": "<string>",
"message": "<string>"
}
],
"expiresAt": "2023-11-07T05:31:56Z",
"id": 123,
"hash": "<string>",
"message": "<string>",
"lastOccurrence": "2023-11-07T05:31:56Z",
"sort": {
"short": true,
"float": true,
"binary": true,
"number": true,
"integralNumber": true,
"boolean": true,
"double": true,
"long": true,
"int": true,
"valueNode": true,
"containerNode": true,
"missingNode": true,
"object": true,
"pojo": true,
"floatingPointNumber": true,
"bigDecimal": true,
"bigInteger": true,
"textual": true,
"array": true,
"null": true
},
"legalEntityIds": [
123
],
"subscriptionPackages": [],
"userRoles": [],
"usernames": [
"<string>"
],
"sellerIds": [
123
],
"acknowledgements": [
{
"username": "<string>",
"seenAt": "2023-11-07T05:31:56Z"
}
]
}
'import requests
url = "https://api.quivo.co/notifications/test-email"
payload = {
"contents": [
{
"title": "<string>",
"message": "<string>"
}
],
"expiresAt": "2023-11-07T05:31:56Z",
"id": 123,
"hash": "<string>",
"message": "<string>",
"lastOccurrence": "2023-11-07T05:31:56Z",
"sort": {
"short": True,
"float": True,
"binary": True,
"number": True,
"integralNumber": True,
"boolean": True,
"double": True,
"long": True,
"int": True,
"valueNode": True,
"containerNode": True,
"missingNode": True,
"object": True,
"pojo": True,
"floatingPointNumber": True,
"bigDecimal": True,
"bigInteger": True,
"textual": True,
"array": True,
"null": True
},
"legalEntityIds": [123],
"subscriptionPackages": [],
"userRoles": [],
"usernames": ["<string>"],
"sellerIds": [123],
"acknowledgements": [
{
"username": "<string>",
"seenAt": "2023-11-07T05:31:56Z"
}
]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
contents: [{title: '<string>', message: '<string>'}],
expiresAt: '2023-11-07T05:31:56Z',
id: 123,
hash: '<string>',
message: '<string>',
lastOccurrence: '2023-11-07T05:31:56Z',
sort: {
short: true,
float: true,
binary: true,
number: true,
integralNumber: true,
boolean: true,
double: true,
long: true,
int: true,
valueNode: true,
containerNode: true,
missingNode: true,
object: true,
pojo: true,
floatingPointNumber: true,
bigDecimal: true,
bigInteger: true,
textual: true,
array: true,
null: true
},
legalEntityIds: [123],
subscriptionPackages: [],
userRoles: [],
usernames: ['<string>'],
sellerIds: [123],
acknowledgements: [{username: '<string>', seenAt: '2023-11-07T05:31:56Z'}]
})
};
fetch('https://api.quivo.co/notifications/test-email', 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://api.quivo.co/notifications/test-email",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'contents' => [
[
'title' => '<string>',
'message' => '<string>'
]
],
'expiresAt' => '2023-11-07T05:31:56Z',
'id' => 123,
'hash' => '<string>',
'message' => '<string>',
'lastOccurrence' => '2023-11-07T05:31:56Z',
'sort' => [
'short' => true,
'float' => true,
'binary' => true,
'number' => true,
'integralNumber' => true,
'boolean' => true,
'double' => true,
'long' => true,
'int' => true,
'valueNode' => true,
'containerNode' => true,
'missingNode' => true,
'object' => true,
'pojo' => true,
'floatingPointNumber' => true,
'bigDecimal' => true,
'bigInteger' => true,
'textual' => true,
'array' => true,
'null' => true
],
'legalEntityIds' => [
123
],
'subscriptionPackages' => [
],
'userRoles' => [
],
'usernames' => [
'<string>'
],
'sellerIds' => [
123
],
'acknowledgements' => [
[
'username' => '<string>',
'seenAt' => '2023-11-07T05:31:56Z'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.quivo.co/notifications/test-email"
payload := strings.NewReader("{\n \"contents\": [\n {\n \"title\": \"<string>\",\n \"message\": \"<string>\"\n }\n ],\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"id\": 123,\n \"hash\": \"<string>\",\n \"message\": \"<string>\",\n \"lastOccurrence\": \"2023-11-07T05:31:56Z\",\n \"sort\": {\n \"short\": true,\n \"float\": true,\n \"binary\": true,\n \"number\": true,\n \"integralNumber\": true,\n \"boolean\": true,\n \"double\": true,\n \"long\": true,\n \"int\": true,\n \"valueNode\": true,\n \"containerNode\": true,\n \"missingNode\": true,\n \"object\": true,\n \"pojo\": true,\n \"floatingPointNumber\": true,\n \"bigDecimal\": true,\n \"bigInteger\": true,\n \"textual\": true,\n \"array\": true,\n \"null\": true\n },\n \"legalEntityIds\": [\n 123\n ],\n \"subscriptionPackages\": [],\n \"userRoles\": [],\n \"usernames\": [\n \"<string>\"\n ],\n \"sellerIds\": [\n 123\n ],\n \"acknowledgements\": [\n {\n \"username\": \"<string>\",\n \"seenAt\": \"2023-11-07T05:31:56Z\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.quivo.co/notifications/test-email")
.header("Content-Type", "application/json")
.body("{\n \"contents\": [\n {\n \"title\": \"<string>\",\n \"message\": \"<string>\"\n }\n ],\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"id\": 123,\n \"hash\": \"<string>\",\n \"message\": \"<string>\",\n \"lastOccurrence\": \"2023-11-07T05:31:56Z\",\n \"sort\": {\n \"short\": true,\n \"float\": true,\n \"binary\": true,\n \"number\": true,\n \"integralNumber\": true,\n \"boolean\": true,\n \"double\": true,\n \"long\": true,\n \"int\": true,\n \"valueNode\": true,\n \"containerNode\": true,\n \"missingNode\": true,\n \"object\": true,\n \"pojo\": true,\n \"floatingPointNumber\": true,\n \"bigDecimal\": true,\n \"bigInteger\": true,\n \"textual\": true,\n \"array\": true,\n \"null\": true\n },\n \"legalEntityIds\": [\n 123\n ],\n \"subscriptionPackages\": [],\n \"userRoles\": [],\n \"usernames\": [\n \"<string>\"\n ],\n \"sellerIds\": [\n 123\n ],\n \"acknowledgements\": [\n {\n \"username\": \"<string>\",\n \"seenAt\": \"2023-11-07T05:31:56Z\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/notifications/test-email")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"contents\": [\n {\n \"title\": \"<string>\",\n \"message\": \"<string>\"\n }\n ],\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"id\": 123,\n \"hash\": \"<string>\",\n \"message\": \"<string>\",\n \"lastOccurrence\": \"2023-11-07T05:31:56Z\",\n \"sort\": {\n \"short\": true,\n \"float\": true,\n \"binary\": true,\n \"number\": true,\n \"integralNumber\": true,\n \"boolean\": true,\n \"double\": true,\n \"long\": true,\n \"int\": true,\n \"valueNode\": true,\n \"containerNode\": true,\n \"missingNode\": true,\n \"object\": true,\n \"pojo\": true,\n \"floatingPointNumber\": true,\n \"bigDecimal\": true,\n \"bigInteger\": true,\n \"textual\": true,\n \"array\": true,\n \"null\": true\n },\n \"legalEntityIds\": [\n 123\n ],\n \"subscriptionPackages\": [],\n \"userRoles\": [],\n \"usernames\": [\n \"<string>\"\n ],\n \"sellerIds\": [\n 123\n ],\n \"acknowledgements\": [\n {\n \"username\": \"<string>\",\n \"seenAt\": \"2023-11-07T05:31:56Z\"\n }\n ]\n}"
response = http.request(request)
puts response.read_bodyThis response has no body data.Create notification
Send a test notification email to verify email configuration.
curl --request POST \
--url https://api.quivo.co/notifications/test-email \
--header 'Content-Type: application/json' \
--data '
{
"contents": [
{
"title": "<string>",
"message": "<string>"
}
],
"expiresAt": "2023-11-07T05:31:56Z",
"id": 123,
"hash": "<string>",
"message": "<string>",
"lastOccurrence": "2023-11-07T05:31:56Z",
"sort": {
"short": true,
"float": true,
"binary": true,
"number": true,
"integralNumber": true,
"boolean": true,
"double": true,
"long": true,
"int": true,
"valueNode": true,
"containerNode": true,
"missingNode": true,
"object": true,
"pojo": true,
"floatingPointNumber": true,
"bigDecimal": true,
"bigInteger": true,
"textual": true,
"array": true,
"null": true
},
"legalEntityIds": [
123
],
"subscriptionPackages": [],
"userRoles": [],
"usernames": [
"<string>"
],
"sellerIds": [
123
],
"acknowledgements": [
{
"username": "<string>",
"seenAt": "2023-11-07T05:31:56Z"
}
]
}
'import requests
url = "https://api.quivo.co/notifications/test-email"
payload = {
"contents": [
{
"title": "<string>",
"message": "<string>"
}
],
"expiresAt": "2023-11-07T05:31:56Z",
"id": 123,
"hash": "<string>",
"message": "<string>",
"lastOccurrence": "2023-11-07T05:31:56Z",
"sort": {
"short": True,
"float": True,
"binary": True,
"number": True,
"integralNumber": True,
"boolean": True,
"double": True,
"long": True,
"int": True,
"valueNode": True,
"containerNode": True,
"missingNode": True,
"object": True,
"pojo": True,
"floatingPointNumber": True,
"bigDecimal": True,
"bigInteger": True,
"textual": True,
"array": True,
"null": True
},
"legalEntityIds": [123],
"subscriptionPackages": [],
"userRoles": [],
"usernames": ["<string>"],
"sellerIds": [123],
"acknowledgements": [
{
"username": "<string>",
"seenAt": "2023-11-07T05:31:56Z"
}
]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
contents: [{title: '<string>', message: '<string>'}],
expiresAt: '2023-11-07T05:31:56Z',
id: 123,
hash: '<string>',
message: '<string>',
lastOccurrence: '2023-11-07T05:31:56Z',
sort: {
short: true,
float: true,
binary: true,
number: true,
integralNumber: true,
boolean: true,
double: true,
long: true,
int: true,
valueNode: true,
containerNode: true,
missingNode: true,
object: true,
pojo: true,
floatingPointNumber: true,
bigDecimal: true,
bigInteger: true,
textual: true,
array: true,
null: true
},
legalEntityIds: [123],
subscriptionPackages: [],
userRoles: [],
usernames: ['<string>'],
sellerIds: [123],
acknowledgements: [{username: '<string>', seenAt: '2023-11-07T05:31:56Z'}]
})
};
fetch('https://api.quivo.co/notifications/test-email', 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://api.quivo.co/notifications/test-email",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'contents' => [
[
'title' => '<string>',
'message' => '<string>'
]
],
'expiresAt' => '2023-11-07T05:31:56Z',
'id' => 123,
'hash' => '<string>',
'message' => '<string>',
'lastOccurrence' => '2023-11-07T05:31:56Z',
'sort' => [
'short' => true,
'float' => true,
'binary' => true,
'number' => true,
'integralNumber' => true,
'boolean' => true,
'double' => true,
'long' => true,
'int' => true,
'valueNode' => true,
'containerNode' => true,
'missingNode' => true,
'object' => true,
'pojo' => true,
'floatingPointNumber' => true,
'bigDecimal' => true,
'bigInteger' => true,
'textual' => true,
'array' => true,
'null' => true
],
'legalEntityIds' => [
123
],
'subscriptionPackages' => [
],
'userRoles' => [
],
'usernames' => [
'<string>'
],
'sellerIds' => [
123
],
'acknowledgements' => [
[
'username' => '<string>',
'seenAt' => '2023-11-07T05:31:56Z'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.quivo.co/notifications/test-email"
payload := strings.NewReader("{\n \"contents\": [\n {\n \"title\": \"<string>\",\n \"message\": \"<string>\"\n }\n ],\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"id\": 123,\n \"hash\": \"<string>\",\n \"message\": \"<string>\",\n \"lastOccurrence\": \"2023-11-07T05:31:56Z\",\n \"sort\": {\n \"short\": true,\n \"float\": true,\n \"binary\": true,\n \"number\": true,\n \"integralNumber\": true,\n \"boolean\": true,\n \"double\": true,\n \"long\": true,\n \"int\": true,\n \"valueNode\": true,\n \"containerNode\": true,\n \"missingNode\": true,\n \"object\": true,\n \"pojo\": true,\n \"floatingPointNumber\": true,\n \"bigDecimal\": true,\n \"bigInteger\": true,\n \"textual\": true,\n \"array\": true,\n \"null\": true\n },\n \"legalEntityIds\": [\n 123\n ],\n \"subscriptionPackages\": [],\n \"userRoles\": [],\n \"usernames\": [\n \"<string>\"\n ],\n \"sellerIds\": [\n 123\n ],\n \"acknowledgements\": [\n {\n \"username\": \"<string>\",\n \"seenAt\": \"2023-11-07T05:31:56Z\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.quivo.co/notifications/test-email")
.header("Content-Type", "application/json")
.body("{\n \"contents\": [\n {\n \"title\": \"<string>\",\n \"message\": \"<string>\"\n }\n ],\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"id\": 123,\n \"hash\": \"<string>\",\n \"message\": \"<string>\",\n \"lastOccurrence\": \"2023-11-07T05:31:56Z\",\n \"sort\": {\n \"short\": true,\n \"float\": true,\n \"binary\": true,\n \"number\": true,\n \"integralNumber\": true,\n \"boolean\": true,\n \"double\": true,\n \"long\": true,\n \"int\": true,\n \"valueNode\": true,\n \"containerNode\": true,\n \"missingNode\": true,\n \"object\": true,\n \"pojo\": true,\n \"floatingPointNumber\": true,\n \"bigDecimal\": true,\n \"bigInteger\": true,\n \"textual\": true,\n \"array\": true,\n \"null\": true\n },\n \"legalEntityIds\": [\n 123\n ],\n \"subscriptionPackages\": [],\n \"userRoles\": [],\n \"usernames\": [\n \"<string>\"\n ],\n \"sellerIds\": [\n 123\n ],\n \"acknowledgements\": [\n {\n \"username\": \"<string>\",\n \"seenAt\": \"2023-11-07T05:31:56Z\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/notifications/test-email")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"contents\": [\n {\n \"title\": \"<string>\",\n \"message\": \"<string>\"\n }\n ],\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"id\": 123,\n \"hash\": \"<string>\",\n \"message\": \"<string>\",\n \"lastOccurrence\": \"2023-11-07T05:31:56Z\",\n \"sort\": {\n \"short\": true,\n \"float\": true,\n \"binary\": true,\n \"number\": true,\n \"integralNumber\": true,\n \"boolean\": true,\n \"double\": true,\n \"long\": true,\n \"int\": true,\n \"valueNode\": true,\n \"containerNode\": true,\n \"missingNode\": true,\n \"object\": true,\n \"pojo\": true,\n \"floatingPointNumber\": true,\n \"bigDecimal\": true,\n \"bigInteger\": true,\n \"textual\": true,\n \"array\": true,\n \"null\": true\n },\n \"legalEntityIds\": [\n 123\n ],\n \"subscriptionPackages\": [],\n \"userRoles\": [],\n \"usernames\": [\n \"<string>\"\n ],\n \"sellerIds\": [\n 123\n ],\n \"acknowledgements\": [\n {\n \"username\": \"<string>\",\n \"seenAt\": \"2023-11-07T05:31:56Z\"\n }\n ]\n}"
response = http.request(request)
puts response.read_bodyThis response has no body data.Body
Data to create a new resource at /notifications/test-email
Request payload for sending a test notification email. Contains email configuration and recipient information for testing notification delivery.
The severity level. Possible values: INFO, WARNING, ERROR, URGENT, UPDATES
INFO, WARNING, ERROR, URGENT, UPDATES Array of content items
Show child attributes
Show child attributes
The current status of the item
DRAFT, PUBLISHED, DELETED The expires at timestamp
The unique identifier for the id
The hash value
Message content
The last occurrence timestamp
The
Show child attributes
Show child attributes
The type or category of the notification
UNKNOWN_SKU_IN_ORDER, ORDER_CANCELLATION_FAILED, AMAZON_PARTNERED_CARRIER, INVALID_ORDER_IDENTIFIER, MISSING_ORDER_INFORMATION, COMPLETING_ORDER_FORCEFULLY, ADDRESS_VERIFICATION_FAILED, ORDERS_OUT_OF_STOCK, RESTRICTIVE_SHIPMENT, NEW_RETURN, STOCK_BELOW_THRESHOLD, MULTIPLE_STOCK_QUANT_IDS, ITEM_NOT_STOCKED_AT_SHOP, INBOUND_COMPLETED, INBOUND_SHIPMENT_ARRIVED, INBOUND_STATUS_CHANGE, INBOUND_UNKNOWN_SKU, INBOUND_INFORMATION_MISSING, CUSTOMER_INQUIRY_UPDATE, CUSTOMER_INQUIRY_RESOLVED, INQUIRY_REMINDER, CUSTOMER_INQUIRY_NEW_QUIVO, CUSTOMER_INQUIRY_NEW, SHOP_ERROR, ITEM_NOT_FOUND, SHOP_DEACTIVATED, NOT_ENOUGH_ACCESS, LOCATION_NOT_FOUND, MULTIPLE_LOCATION_IDS, NO_LOCATION_CONFIGURED, IMPORTING_ORDERS_FAILED, EXPORTING_INVENTORY_FAILED, SHOP_NOT_CONFIGURED_PROPERLy, SHOP_AVAILABLE, NEW_RETURN_LINK_LABEL, ITEM_EXPIRATION, APPROVED_API_KEY_REQUEST, EXPIRED_API_KEY, DECLINED_API_KEY_REQUEST, DELETED_API_KEY_REQUEST, IMPORTANT_NOTIFICATION The unique identifier for the legalentitys
Package identifier or subscription package
RISING_STAR, STELLAR_EXPLORER, FULFILLED_LEGEND, WITHOUT_PACKAGE, SEND_IT_YOURSELF, CUSTOMIZED Array of user role
ROLE_ADMIN, ROLE_LOCAL_ADMIN, ROLE_SELLER_ADMIN, ROLE_USER, ROLE_MOBILE_APP, ROLE_WEBHOOK The name of the users
The unique identifier for the sellers
Array of acknowledgement items
Show child attributes
Show child attributes
The channel. Possible values: EMAIL, POP_UP, BOTH
EMAIL, POP_UP, BOTH Response
Bad request - the request payload is invalid, missing required fields, or contains invalid data.