Currently, function expireInvoice() only have 1 parameter "$id". is it possible to add new param to support expire invoice based on sub-account? seems, I think you guys just add parameters like the below:
public static function expireInvoice($id, $params = [])
{
$url = '/invoices/' . $id . '/expire!';
return static::_request('POST', $url, $params);
}
Currently, function expireInvoice() only have 1 parameter "$id". is it possible to add new param to support expire invoice based on sub-account? seems, I think you guys just add parameters like the below: