List cardholders
curl --request GET \
--url https://business.planewallet.org/api/v1/holders \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://business.planewallet.org/api/v1/holders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://business.planewallet.org/api/v1/holders"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "<string>",
"name": "<string>",
"email": "<string>",
"kind": "<string>",
"status": "<string>",
"externalId": "<string>"
}
]
}{
"statusCode": 123,
"message": "<string>"
}Cardholders
List cardholders
Required permission: holders:read. Sandbox is isolated from live funds. Live integration availability is checked server-side.
GET
/
api
/
v1
/
holders
List cardholders
curl --request GET \
--url https://business.planewallet.org/api/v1/holders \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://business.planewallet.org/api/v1/holders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://business.planewallet.org/api/v1/holders"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "<string>",
"name": "<string>",
"email": "<string>",
"kind": "<string>",
"status": "<string>",
"externalId": "<string>"
}
]
}{
"statusCode": 123,
"message": "<string>"
}