v1

latestOpenAPI 3.1.02026-07-24320172.9 KB

Retrieve Notifications to a Subscription

get/callback/v2.0/notifications/accounts/{accountId}/subscriptionId/{subscriptionId}

Path parameters

versionstring required

The current version of BaaSiC API

accountIdstring required

Target callback account identification

subscriptionIdstring required

Callback subscription unique identifier

Query parameters

frominteger

Initial time used as a filter to get notification by a certain period

untilinteger

Final time used as a filter to get the end of the notifications. Must be given in seconds

wasNotifiedboolean

Defines the notifications to be retrieved. For true, retrieves all successfull notifications, for false, retrieves only failed notificaitons and null returns all notifications

pageNumberinteger

Which specific page to retrieve in case of big responses

pageSizeinteger

Quantity of responses per page

entityIdstring

The operation identifier (can be the transactionId, paymentGroupId or depositOrderId, for example)

Headers

Authorizationstring required

The personal authentication token obtained by each user from the token authentication endpoint

Response

200

entityIdstring
entityTypestring
notificationTypestring
notificationstring
isNotifiedWithSuccessboolean

Example response

[
  {
    "entityId": "string",
    "entityType": "string",
    "notificationType": "string",
    "notification": "string",
    "isNotifiedWithSuccess": true,
    "notificationHistory": [
      {
        "timestamp": "string",
        "notifiedWithSuccess": true,
        "status": "string"
      }
    ]
  }
]