post https://yourdomain.com/production/api/wallet/balance
Get your wallet balance
Header
Name | Type | Value |
---|---|---|
api-key | string | (get it from api credentials in api panel) |
content-type | string | application/json |
accept | string | application/json |
$header = [
'accept: application/json',
'api-key: XdWCmd0NF1ZVklnVPegOdL59WkFM7o4h91UYPAt1',
'content-type: application/json',
];
Request Body Parameters
Name | Type | Value |
---|---|---|
partner_id | integer | (Get in from api panel you api parner id) |
$parameter = [
'partner_id' => '1'
];
$body_json_string = json_encode($parameter);