Get wallet balance
Get your current wallet balance
This endpoint enables merchants to access their Prembly wallet balance and monitor the available funds without having to login to their profile.
Please note that the utilization of this endpoint is restricted only to live environment.
GET
{{URL}}/prembly/wallet/balance
Header
Key | Description |
---|---|
x-api-key | Your Secret Key |
app-id | Your app-id |
Response
{
"status": true,
"data": {
"country_code": "NG",
"name": "Prembly",
"email": "[email protected]",
"currency": "NGN",
"balance": 9900,
"is_active": true
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
data | Contains detailed information about the entity. |
country_code | The country code associated with the entity. |
name | The name of the entity. |
The email address associated with the entity. | |
currency | The currency used by the entity. |
balance | The balance or financial amount associated with the entity. |
is_active | Indicates whether the entity is active. |
Updated 6 months ago