POST
/
v1
/
notifications
/
test
curl --request POST \
  --url https://api.sandbox.meso.network/v1/notifications/test \
  --header 'Authorization: Basic <encoded-value>'
{
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Use partnerId and secretKey as the username and password respectively. The client must send these credentials in the Authorization header, encoded in Base64. The format for the header is Authorization: Basic {credentials}, where "credentials" is the Base64 encoding of "partnerId:secretKey".

Response

201
application/json
Notification created
created_at
string
required

An RFC 3339 timestamp representing when the test notification was created. The delivery time of this notification will likely be different.

Example: 2017-07-21T17:32:28Z

See Open API data types for more.