CloudFlare\Organizations::update PHP Method

update() public method

Update organization (permission needed: #organization:edit) Update an existing Organization
public update ( string | null $identifier = null, string | null $name = null )
$identifier string | null
$name string | null Organization Name
    public function update($identifier = null, $name = null)
    {
        $data = ['name' => $name];
        return $this->get('/organizations/' . $identifier, $data);
    }