The following documentation describes the API resources published by the Paiwise service. External payment service providers can implement this API to publish their payment services to users of the Neuron®.
All requests made to the external payment service will be made using HTTPS. The Neuron® will validate the name of the payment service, by validating the server certificate of the external service.
In requests made to the external payment service, the token will be provided in a Bearer
HTTP header. This token should be seen as an API key, and does not change. It provides very little security.
To validate the identity of the Neuron®, the payment service should use Mutual TLS. If enabled by the external service provider, the Neuron® will send the public part of its server certificate in the request, enabling the external payment service to validate the origin of the call, and make sure the caller has the right to use the associated token.
The host name is the domain name of the server hosting the service. All API calls will be made to this host name. When listing resources for the API below, it will be assumed they are prefixed by https://HOSTNAME
, where HOSTNAME
is replaced by the domain name provided here.
The following resources describe the steps for allowing a user on a TAG Neuron® to buy eDaler®. An outline is as follows:
The /payment/available-buy-payment-method
resource returns available payment methods for buying eDaler®.
{
"currency": CURRENCY_CODE,
"country": COUNTRY_CODE
}
Input Parameters | |||
---|---|---|---|
CURRENCY_CODE |
string | Required | Three letter currency code the user wants to use. |
COUNTRY_CODE |
string | Required | Two-letter ISO country code of the user. |
[
{
"id": SERVICE_ID,
"displayName": DISPLAY_NAME,
"logo": {
"url": LOGO_URL,
"width": LOGO_WIDTH,
"height": LOGO_HEIGHT
},
"contractId": CONTRACT_ID,
"fields": [
{
"field": FIELD_ID,
"dataType": FIELD_TYPE,
"required": FIELD_REQUIRED
}, ...],
"endpoint": {
"method": HTTP_METHOD,
"url": SERVICE_URL,
"optionsUrl": OPTIONS_URL
}
},
...
]
Output Parameters | |||
---|---|---|---|
SERVICE_ID |
string | Required | ID of service in external system. |
DISPLAY_NAME |
string | Required | Human-readable text, displayable to the user. |
LOGO_URL |
string | Required | URL to logotype to present for the service. |
LOGO_WIDTH |
int | Required | Width of logotype, in pixels. |
LOGO_HEIGHT |
int | Required | Height of logotype, in pixels. |
CONTRACT_ID |
string | Required | ID of Smart Contract, for collecting parameters for buying eDaler®. If smart contract is not used, collection is done using an external web page. |
FIELD_ID |
string | Required | ID of a field (or parameter), that contains information that needs to be sent to the external payment service. Values will be taken from the contract. |
FIELD_TYPE |
string | Required | Data type of the field. |
FIELD_REQUIRED |
string | Required | If the field is required or not. |
HTTP_METHOD |
string | Required | HTTP method to use to invoke service. Should be "POST" . |
SERVICE_URL |
string | Required | URL to invoke service. |
OPTIONS_URL |
string | Optional | URL to retrieve payment options, that can be used by the client to simplify user input. |
The user selects a service, by creating and signing a smart contract, based on the template defined for the service. The template must include parameters referenced to by the service (FIELD_ID
) that have the corresponding types. The contract must also contain the amount to buy, and in what currency. References to these parameters are provided in the machine-readable section of the contract. The machine-readable section must also contain a reference to the external payment service to be used.
The following example contains the machine-readable section of a smart contract used to initiate the buying of eDaler® using an external payment service using this service:
<BuyEDaler serviceId="SERVICE_ID" serviceProvider="Paiwise.Internal.PaiwisePaymentServices" xmlns="https://paiwise.tagroot.io/Schema/PaymentInstructions.xsd">
<Amount>
<ParameterReference parameter="AMOUNT_PARAMETER" />
</Amount>
<Currency>
<ParameterReference parameter="CURRENCIY_PARAMETER" />
</Currency>
</BuyEDaler>
Contract Parameters | |||
---|---|---|---|
SERVICE_ID |
string | Required | ID of service in external system. |
AMOUNT_PARAMETER |
string | Required | ID of the contract parameter that holds the amount to buy. |
CURRENCY_PARAMETER |
string | Required | ID of the contract parameter that holds the currency to buy. |
Once the contract has been properly signed, the Neuron® will process and validate it. Once validated, and found to be OK, the process will be initiated.
A JSON object comprised of the fields listed in the service description is sent in this request. Some of the fields in this JSON object are predefined, others are taken from the legal identity of the user, attempting to buy eDaler®. Parameters that are collected via the smart contract, and not available in the legal identity, are set to null
, for reference. The smart contract has not been signed at this point.
Predefined fields | |||
---|---|---|---|
webhook |
string | Optional | URL for a webhook. The Neuron® does not support webhooks at the moment, so null will be provided. |
returnurl |
string | Optional | URL to return to, in case process concludes successfully. If such a URL is not used, the empty string will be provided. |
returnerrorurl |
string | Optional | URL to return to, in case process fails. If such a URL is not used, the empty string will be provided. |
cancelurl |
string | Optional | URL to return to, in case process is cancelled. If such a URL is not used, the empty string will be provided. |
The response to this request is a JSON array of object. Each object represents one option that the user can select from a list, with related parameters. This may be bank name, bank code, bank account, etc. If an option is presented to the user, and the user selects this option, all named parameters will be set accordingly.
Note It is up to the external service provider, who defines the smart contract template, to define the property names of the options returned. The client application will receive these options, and create drop-down-lists where possible, where the user can select among available values, instead of having to manually fill in the corresponding parameter values.
Once sufficient information has been collected from the user, the payment process is initiated by the Neuron®. When the Neuron® initiates the process to buy eDaler®, an HTTP POST
request is made to the SERVICE_URL
provided by the service.
A JSON object comprised of the fields listed in the service description is sent in this request. Some of the fields in this JSON object are predefined, others are taken from the smart contract that has been signed, or the legal identity of the user, buying the eDaler®.
Predefined fields | |||
---|---|---|---|
webhook |
string | Optional | URL for a webhook. The Neuron® does not support webhooks at the moment, so null will be provided. |
returnurl |
string | Optional | URL to return to, in case process concludes successfully. If such a URL is not used, the empty string will be provided. |
returnerrorurl |
string | Optional | URL to return to, in case process fails. If such a URL is not used, the empty string will be provided. |
cancelurl |
string | Optional | URL to return to, in case process is cancelled. If such a URL is not used, the empty string will be provided. |
amount |
decimal | Required | Amount to buy. |
currency |
string | Required | Currency of the amount. |
If the external service provider accepts the request as valid, it can respond in the following ways:
If immediately accepting the payment, a paid
response is returned. In this case, polling for a result will not be necessary, and the process is considered completed.
{
"status": "paid",
"amount": AMOUNT,
"currency": CURRENCY
}
Output Parameters | |||
---|---|---|---|
AMOUNT |
decimal | Required | Amount paid. Amount actually paid. This is the amount of eDaler® that will be considered bought. |
CURRENCY |
string | Required | Currency of amount paid. |
If the result of the request is not immediately known, a pending
response is returned. In this case, the Neuron® will regularly poll the external payment service, until the process concludes, fails or times out.
{
"status": "pending",
"id": TRANSACTION_ID,
"redirectUrl": CLIENT_URL
}
Output Parameters | |||
---|---|---|---|
TRANSACTION_ID |
string | Required | An ID of the payment transaction being processed. Used when polling for payment status. |
CLIENT_URL |
string | Optional | An URL that the client must open if it is available, to complete the payment request. |
Note: If the CLIENT_URL
is provided in the response, it is sent to the user of the Neuron®, and the client will open it out-of-band (i.e. without passing the Neuron®). The external payment service can publish such client URLs to collect additional information from the user, before accepting or rejecting the request.
If the result of the request is cancelled by the user, or the external service itself, a cancelled
response is returned. In this case, the Neuron® will terminate the process, without any eDaler® being bought.
{
"status": "cancelled"
}
If a pending
response is returned, the Neuron® will begin a process of polling the external payment service, to get any updates on the status of the process. At the same time, if a client URL is presented to the client, the client can provide additional information to the external payment service out-of-band.
When polling the external payment service, a POST
is made to the /payment/retrieve
resource on the external payment host. A simple JSON object is sent with this request:
{
"id": TRANSACTION_ID
}
Input Parameters | |||
---|---|---|---|
TRANSACTION_ID |
string | Required | The ID of the payment transaction being processed, as returned by the payment service earlier. |
The response to the request, can be any of the paid
, pending
or cancelled
responses described earlier.
Note: The Neuron® will cancel the polling after a given number of minutes. This number is set when you configure the Paiwise service in the Neuron®.
If a process is still pending
after the timeout threshold has been reached, the Neuron® will cancel the process.
Cancelling a request is done by sending a POST
to /payment/cancel
containing the following simple JSON object (same as when polling):
{
"id": TRANSACTION_ID
}
Input Parameters | |||
---|---|---|---|
TRANSACTION_ID |
string | Required | The ID of the payment transaction being processed, as returned by the payment service earlier. |
The response to the cancel request is:
{
"status": STATUS,
"message": MESSAGE
}
Output Parameters | |||
---|---|---|---|
STATUS |
int | Required | A status code. |
MESSAGE |
string | Required | A human-readable message, that will be presented to the user. |
The following resources describe the steps for allowing a user on a TAG Neuron® to sell eDaler®. An outline is as follows:
The /payout/available-sell-payment-method
resource, returns available payment methods for selling eDaler®.
{
"currency": CURRENCY_CODE,
"country": COUNTRY_CODE
}
Input Parameters | |||
---|---|---|---|
CURRENCY_CODE |
string | Required | Three letter currency code the user wants to use. |
COUNTRY_CODE |
string | Required | Two-letter ISO country code of the user. |
[
{
"id": SERVICE_ID,
"displayName": DISPLAY_NAME,
"logo": {
"url": LOGO_URL,
"width": LOGO_WIDTH,
"height": LOGO_HEIGHT
},
"contractId": CONTRACT_ID,
"fields": [
{
"field": FIELD_ID,
"dataType": FIELD_TYPE,
"required": FIELD_REQUIRED
}, ...],
"endpoint": {
"method": HTTP_METHOD,
"url": SERVICE_URL,
"optionsUrl": OPTIONS_URL
}
},
...
]
Output Parameters | |||
---|---|---|---|
SERVICE_ID |
string | Required | ID of service in external system. |
DISPLAY_NAME |
string | Required | Human-readable text, displayable to the user. |
LOGO_URL |
string | Required | URL to logotype to present for the service. |
LOG_WIDTH |
int | Required | Width of logotype, in pixels. |
LOG_HEIGHT |
int | Required | Height of logotype, in pixels. |
CONTRACT_ID |
string | Required | ID of Smart Contract, for collecting parameters for buying eDaler®. If smart contract is not used, collection is done using an external web page. |
FIELD_ID |
string | Required | ID of a field (or parameter), that contains information that needs to be sent to the external payment service. |
FIELD_TYPE |
string | Required | Data type of the field. |
FIELD_REQUIRED |
string | Required | If the field is required or not. |
HTTP_METHOD |
string | Required | HTTP method to use to invoke service. Should be "POST" . |
SERVICE_URL |
string | Required | URL to invoke service. |
OPTIONS_URL |
string | Optional | URL to retrieve payment options, that can be used by the client to simplify user input. |
The user selects a service, by creating and signing a smart contract, based on the template defined for the service. The template must include parameters referenced to by the service (FIELD_ID
) that have the corresponding types. The contract must also contain the amount to sell, and in what currency. References to these parameters are provided in the machine-readable section of the contract. The machine-readable section must also contain a reference to the external payment service to be used.
The following example contains the machine-readable section of a smart contract used to initiate the selling of eDaler® using an external payment service using this service:
<SellEDaler serviceId="SERVICE_ID" serviceProvider="Paiwise.Internal.PaiwisePaymentServices" xmlns="https://paiwise.tagroot.io/Schema/PaymentInstructions.xsd">
<Amount>
<ParameterReference parameter="AMOUNT_PARAMETER" />
</Amount>
<Currency>
<ParameterReference parameter="CURRENCIY_PARAMETER" />
</Currency>
</SellEDaler>
Contract Parameters | |||
---|---|---|---|
SERVICE_ID |
string | Required | ID of service in external system. |
AMOUNT_PARAMETER |
string | Required | ID of the contract parameter that holds the amount to sell. |
CURRENCY_PARAMETER |
string | Required | ID of the contract parameter that holds the currency to sell. |
Once the contract has been properly signed, the Neuron® will process and validate it. Once validated, and found to be OK, the process will be initiated.
A JSON object comprised of the fields listed in the service description is sent in this request. Some of the fields in this JSON object are predefined, others are taken from the legal identity of the user, attempting to buy eDaler®. Parameters that are collected via the smart contract, and not available in the legal identity, are set to null
, for reference. The smart contract has not been signed at this point.
Predefined fields | |||
---|---|---|---|
webhook |
string | Optional | URL for a webhook. The Neuron® does not support webhooks at the moment, so null will be provided. |
returnurl |
string | Optional | URL to return to, in case process concludes successfully. If such a URL is not used, the empty string will be provided. |
returnerrorurl |
string | Optional | URL to return to, in case process fails. If such a URL is not used, the empty string will be provided. |
cancelurl |
string | Optional | URL to return to, in case process is cancelled. If such a URL is not used, the empty string will be provided. |
name |
string | optional | A concatenation of first, middle and last names as taken from the legal identity of the user. If no such names are available, the personal number of the user. |
address |
string | optional | The address as taken from the legal identity of the user. |
Note: While the name
and address
fields are listed here specifically, they were added before the concept of Role Reference Parameters were introduced to smart contracts. By adding such role reference parameters to your smart contracts, you can extract any information necessary from the legal identity of the signatory, without having to define explicit parameters the user has to fill in.
The response to this request is a JSON array of object. Each object represents one option that the user can select from a list, with related parameters. This may be bank name, bank code, bank account, etc. If an option is presented to the user, and the user selects this option, all named parameters will be set accordingly.
Note It is up to the external service provider, who defines the smart contract template, to define the property names of the options returned. The client application will receive these options, and create drop-down-lists where possible, where the user can select among available values, instead of having to manually fill in the corresponding parameter values.
Once sufficient information has been collected from the user, the payment process is initiated by the Neuron®. When the Neuron® initiates the process to sell eDaler®, an HTTP POST
request is made to the SERVICE_URL
provided by the service.
A JSON object comprised of the fields listed in the service description is sent in this request. Some of the fields in this JSON object are predefined, others are taken from the smart contract that has been signed, or the legal identity of the user, selling the eDaler®.
Predefined fields | |||
---|---|---|---|
webhook |
string | Optional | URL for a webhook. The Neuron® does not support webhooks at the moment, so null will be provided. |
returnurl |
string | Optional | URL to return to, in case process concludes successfully. If such a URL is not used, the empty string will be provided. |
returnerrorurl |
string | Optional | URL to return to, in case process fails. If such a URL is not used, the empty string will be provided. |
cancelurl |
string | Optional | URL to return to, in case process is cancelled. If such a URL is not used, the empty string will be provided. |
amount |
decimal | Required | Amount to buy. |
currency |
string | Required | Currency of the amount. |
name |
string | optional | A concatenation of first, middle and last names as taken from the legal identity of the user. If no such names are available, the personal number of the user. |
address |
string | optional | The address as taken from the legal identity of the user. |
Note: While the name
and address
fields are listed here specifically, they were added before the concept of Role Reference Parameters were introduced to smart contracts. By adding such role reference parameters to your smart contracts, you can extract any information necessary from the legal identity of the signatory, without having to define explicit parameters the user has to fill in.
The Output follows the same pattern as for buying eDaler®.
The polling process follows the same pattern as for buying eDaler®.
Cancelling a process to sell eDaler®, follows the same pattern as for cancelling a process for buying eDaler®.