Get payment channel
curl --request GET \
--url https://api.palpluss.com/v1/payment-wallet/channels/{id} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.palpluss.com/v1/payment-wallet/channels/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.palpluss.com/v1/payment-wallet/channels/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.palpluss.com/v1/payment-wallet/channels/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.palpluss.com/v1/payment-wallet/channels/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.palpluss.com/v1/payment-wallet/channels/{id}")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.palpluss.com/v1/payment-wallet/channels/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"tenantId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"category": "PAYMENT_WALLET",
"type": "PAYBILL",
"shortcode": "123456",
"name": "Main Collections Paybill",
"accountNumber": "ACCOUNT001",
"isDefault": true,
"createdAt": "2023-11-07T05:31:56Z"
},
"requestId": "c1b2a3d4-e5f6-7890-abcd-ef1234567890"
}{
"success": false,
"error": {
"message": "Invalid or revoked API key.",
"code": "INVALID_API_KEY",
"details": {}
},
"requestId": "a1b2c3d4-0000-0000-0000-000000000000"
}{
"success": false,
"error": {
"message": "Transaction not found.",
"code": "TRANSACTION_NOT_FOUND",
"details": {}
},
"requestId": "a1b2c3d4-0000-0000-0000-000000000000"
}Payment Channels
Get Payment Channel
Fetch a single payment channel by its ID.
GET
/
payment-wallet
/
channels
/
{id}
Get payment channel
curl --request GET \
--url https://api.palpluss.com/v1/payment-wallet/channels/{id} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.palpluss.com/v1/payment-wallet/channels/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.palpluss.com/v1/payment-wallet/channels/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.palpluss.com/v1/payment-wallet/channels/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.palpluss.com/v1/payment-wallet/channels/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.palpluss.com/v1/payment-wallet/channels/{id}")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.palpluss.com/v1/payment-wallet/channels/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"tenantId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"category": "PAYMENT_WALLET",
"type": "PAYBILL",
"shortcode": "123456",
"name": "Main Collections Paybill",
"accountNumber": "ACCOUNT001",
"isDefault": true,
"createdAt": "2023-11-07T05:31:56Z"
},
"requestId": "c1b2a3d4-e5f6-7890-abcd-ef1234567890"
}{
"success": false,
"error": {
"message": "Invalid or revoked API key.",
"code": "INVALID_API_KEY",
"details": {}
},
"requestId": "a1b2c3d4-0000-0000-0000-000000000000"
}{
"success": false,
"error": {
"message": "Transaction not found.",
"code": "TRANSACTION_NOT_FOUND",
"details": {}
},
"requestId": "a1b2c3d4-0000-0000-0000-000000000000"
}Retrieve one active payment channel by its
id. Returns 404 CHANNEL_NOT_FOUND if the channel does not exist, belongs to another account, or has been deleted.
{
"success": true,
"data": {
"id": "8b3f1a2c-0000-0000-0000-000000000001",
"tenantId": "b6fbe75f-ce87-4d44-b318-6cfdb8b7de4d",
"category": "PAYMENT_WALLET",
"type": "PAYBILL",
"shortcode": "123456",
"name": "Main Collections Paybill",
"accountNumber": "ACCOUNT001",
"isDefault": true,
"createdAt": "2026-03-01T07:00:00.000Z"
},
"requestId": "f4e5d6c7-0000-0000-0000-000000000000"
}
curl "https://api.palpluss.com/v1/payment-wallet/channels/8b3f1a2c-0000-0000-0000-000000000001" \
-u "$PALPLUSS_API_KEY:"
Authorizations
Paste your PalPluss API key in the username field and leave the password field empty — it is ignored.
Get your key from console → Settings → API Keys (starts with pk_live_ or pk_test_).
In your own code, send the key directly:
Authorization: Basic YOUR_API_KEY
Path Parameters
The channel ID.
Response
Payment channel retrieved successfully.