How can we help?

Searching:

0 results found

Notifications/Get (List)

GET /odata/Notifications

Description

Gets a list of all the Notifications created by Axonize.

See the following for request and response details ‒

See Also

Request ‒ Notifications/Get (List)

Property Type Description Mandatory
appId String A unique Application identifier that is automatically generated by Axonize. This is the identifier of the Application to which this Notification is assigned.

Example JSON Notifications/Get (List) Request

curl -X GET \

https://api.dev.axonize.com/odata/notifications \

-H ‘Accept: application/json, text/plain, */*’ \

-H ‘Content-Type: application/json’ \

-H ‘appId: f51df5bf-8d3c-4ba5-9574-3f3b8d6a26bd’ \

-H ‘cache-control: no-cache’

Response ‒ Notifications/Get (List)

Property Type Description Mandatory
address String Address of the client to receive the notification.
message String The actual text of the message for the notification.
type String/ Enum The method used to send the notification, which can be by email, SMS or a call.
messageTime Date The time when the notification was created.
tenantId String The tenantId of the tenant to which this notification belongs.
userId String The internal Axonize ID of the user.
sourceId String The identifier of the external services that sent the notification.
id String The internal Axonize identifier for the notification.
appId String The ID of the application to which this notification belongs.
creationDate Date The date and time that the notification message definition was created by Axonize in the database.

Example JSON Notifications/Get (List) Response

{

“@odata.context”: “https://dev-axonizeapi-axonize.dev-ase-axonize.p.azurewebsites.net/odata/$metadata#Notifications”,

“value”: [

{

“address”: “”,

“message”: “”,

“type”: 0,

“messageTime”: “2017-05-04T10:39:07.4668696Z”,

“tenantId”: null,

“userId”: “USERID”,

“sourceId”: null,

“id”: “ID”,

“appId”: “APPID”,

“creationDate”: “2017-05-04T10:39:07.467Z”

}]

}