Skip to main content
Version: 1.0.2

List Subscription

The List Subscription API enables to fetch the list of subscriptions created for events notification.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

groupId

Mandatory

String

Account number of the subscriber

Sample value: "200146575944771"


curl --location '' \
--header 'Content-Type: application/json' \
--data '{"groupId":"200146575944771"}'

Body


{
"groupId": "200146575944771"
}

Response: 200

Payload Parameters
ParameterDescription

subscriptions

Array

id

String

Unique Subscription ID

Sample value: "SUB28757"

name

String

Name of the Subscription

Sample value: "NETXD"

createdDate

String

Subscription created date and time

Sample value: "2024-01-05T11:11:04.537Z"

updatedDate

String

Subscription last modified date and time

Sample value: "2024-02-23T08:31:01.307Z"

callbackUrl

String

Url where notifications are posted

Sample value: "http://localhost:4444/event"

source

String

Event's source

Sample value: "PL"

events

Array

Transaction.NEW

String

Event - transaction created

Transaction.UPDATE

String

Event - transaction status updated

Account.UPDATE

String

Event - account status updated

Account.NEW

String

Event - new account created

sourceId

String

ID of the event's source

Sample value: "SRC8001"

statistics

Array

deliveries

String

Total number of events (created & delivered)

Sample value: "351"

delivered

String

Number of events notifications delivered successfully

Sample value: "351"

count

String

Total number of subscriptions

Sample value: "1"


{
"subscriptions": [
{
"id": "SUB28757",
"name": "NETXD ",
"createdDate": "2024-01-05T11:11:04.537Z",
"updatedDate": "2024-02-23T08:31:01.307Z",
"callbackUrl": "http://localhost:4444/event",
"source": "PL",
"events": [
"Transaction.NEW",
"Transaction.UPDATE",
"Account.UPDATE",
"Account.NEW"
],
"sourceId": "SRC8001",
"statistics": {
"deliveries": "351",
"delivered": "351"
}
},
],
"count": "1"
}