Cloudflare\Organizations\Railguns::create PHP Method

create() public method

Create Railgun (permission needed: #organization:edit)
public create ( string $organization_identifier, string $name )
$organization_identifier string Organization identifier tag
$name string Readable identifier of the railgun
    public function create($organization_identifier, $name)
    {
        $data = ['name' => $name];
        return $this->post('/organizations/' . $organization_identifier . '/railguns', $data);
    }