Secure Payments API TabaPay Processor
General
This article covers creating a new TabaPay payment processor though the Secure Payments (formerly PCI Wallet) API. For information on processing a payment using a TabaPay processor, look here.
How To
To create a TabaPay processor, send a POST request to the endpoint: /processors/tabapay
Sample payload:
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' --header 'authorization: YOUR AUTH' --header 'secret: YOUR SECRET' -d '{ \
"tabapay": { \
"name": "Sample_processor", \
"client_id": "sample_client_id", \
"bearer_token": "sample_bearer_token", \
"settlement_account": "sample_settlement_account" \
} \
}' 'https://pciwallet.simnang.com/api/processors/tabapay'
Response:
{
"id": 1
}