curl --request GET \
--url https://api.clickpesa.com/third-parties/list/banks \
--header 'Authorization: Bearer <token>'[
{
"name": "<string>",
"bic": "<string>"
}
]Get Bank List
curl --request GET \
--url https://api.clickpesa.com/third-parties/list/banks \
--header 'Authorization: Bearer <token>'[
{
"name": "<string>",
"bic": "<string>"
}
]Authorization header containing the JWT access token returned from the generate token endpoint. The token already includes the Bearer prefix. Example: Authorization: Bearer eyJhbGciOi...