MMCT TEAM
Server IP : 103.191.208.50  /  Your IP : 216.73.216.53
Web Server : LiteSpeed
System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64
User : celkcksm ( 1031)
PHP Version : 7.4.33
Disable Function : show_source, system, shell_exec, passthru, popen, exec
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/celkcksm/cms.ncriptech.com/vendor/razorpay/razorpay/src/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/celkcksm/cms.ncriptech.com/vendor/razorpay/razorpay/src/Account.php
<?php

namespace Razorpay\Api;

class Account extends Entity
{
    
    public function create($attributes = array())
    {
        $entityUrl = $this->getEntityUrl();

        return $this->request('POST', $entityUrl, $attributes, 'v2');
    }

    public function fetch($id)
    {
        $entityUrl = $this->getEntityUrl();

        return $this->request('GET', $entityUrl . $id, null, 'v2');
    }

    public function delete()
    {
        $entityUrl = $this->getEntityUrl();

        return $this->request('DELETE', $entityUrl . $this->id, null, 'v2');
    }

    public function edit($attributes = array())
    {
        $url = $this->getEntityUrl() . $this->id;

        return $this->request('PATCH', $url, $attributes, 'v2');
    }

    public function stakeholders()
    {
        $stakeholder = new Stakeholder();

        $stakeholder['account_id'] = $this->id;

        return $stakeholder;
    }

    public function products()
    {
        $product = new Product();

        $product['account_id'] = $this->id;

        return $product;
    }

    public function webhooks()
    {
        $webhook = new Webhook();

        $webhook['account_id'] = $this->id;

        return $webhook;
    }

    public function uploadAccountDoc($attributes = array())
    {
      $attributes = $this->setFile($attributes);

      $entityUrl = $this->getEntityUrl() .$this->id .'/documents';
      
      return $this->request('POST', $entityUrl, $attributes, 'v2');
    }

    public function fetchAccountDoc()
    {
        $entityUrl = $this->getEntityUrl() .$this->id .'/documents';

        return $this->request('GET', $entityUrl, null, 'v2');
    }
}

MMCT - 2023