Get Source
The Get Source API enables to fetch the list of available events from the required source.
Method: POST
{{URL}}/jsonrpc
Headers
Name | Value |
---|---|
Content-Type | application/json |
Payload Parameters
Parameter | Description |
---|---|
source Mandatory | String Source or origin of the transaction Sample value: "PL" |
id Mandatory | String Unique identifier of the source Sample value: "SRC2001" |
- cURL
- C#
- Go
- NodeJs
curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"source": "PL"}{"id": "SRC2001"}'
var options = new RestClientOptions("{{URL}}/jsonrpc")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""source"": ""PL""
" + "\n" +
@"}
" + "\n" +
@"" + "\n" +
@"{
" + "\n" +
@" ""id"": ""SRC2001""
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "{{URL}}/jsonrpc"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"source": "PL"`+"
"+`
}`+"
"+`
{`+"
"+`
"id": "SRC2001"`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/jsonrpc',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = "{\r\n \"source\": \"PL\"\r\n}\r\n\n{\r\n \"id\": \"SRC2001\"\r\n}";
req.write(postData);
req.end();
Body
{
"source": "PL"
}
//or
{
"id": "SRC2001"
}
Response: 200
Payload Parameters
Parameter | Description |
---|---|
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"
]
}