Skip to main content
Version: 1.0.2

Get Source

The Get Source API enables to fetch the list of available events from the required source.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json
Payload Parameters
ParameterDescription

source

Mandatory

String

Source or origin of the transaction

Sample value: "PL"

id

Mandatory

String

Unique identifier of the source

Sample value: "SRC2001"


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"source": "PL"}{"id": "SRC2001"}'

Body


{
"source": "PL"
}
//or
{
"id": "SRC2001"
}

Response: 200

Payload Parameters
ParameterDescription

id

String

ID of event's souce

Sample value: "SRC8001"

createdDate

String

Source created date and time

Sample value: "2023-12-22T13:30:28.792Z"

updatedDate

String

Source last modified date and time

Sample value: "2024-01-02T09:12:12.563Z"

source

String

Event's source

Sample value: "PL"

events

Array

name

String

Event - transaction created

Sample value: "Transaction.NEW "

description

String

Description of the event

Sample value: "New Transaction "

keyIds

Array

1567098

String

Key for authorization of integrating source and the connector


{
"id": "SRC8001",
"createdDate": "2023-12-22T13:30:28.792Z",
"updatedDate": "2024-01-02T09:12:12.563Z",
"source": "PL",
"events": [
{
"name": "Transaction.NEW",
"description": "New Transaction"
},
{
"name": "Transaction.UPDATE",
"description": "Update Transaction"
},
{
"name": "Account.UPDATE",
"description": "Update Account"
},
{
"name": "Account.NEW",
"description": "New Account"
}
],
"keyIds": [
"1567098"
]
}