import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
project = client.cloud.projects.create(
name="my-project",
)
print(project.id)package main
import (
"context"
"fmt"
"github.com/G-Core/gcore-go"
"github.com/G-Core/gcore-go/cloud"
"github.com/G-Core/gcore-go/option"
)
func main() {
client := gcore.NewClient(
option.WithAPIKey("My API Key"),
)
project, err := client.Cloud.Projects.New(context.TODO(), cloud.ProjectNewParams{
Name: "my-project",
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", project.ID)
}
curl --request POST \
--url https://api.gcore.com/cloud/v1/projects \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "my-project",
"description": "Project description"
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: 'my-project', description: 'Project description'})
};
fetch('https://api.gcore.com/cloud/v1/projects', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.gcore.com/cloud/v1/projects",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'my-project',
'description' => 'Project description'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.post("https://api.gcore.com/cloud/v1/projects")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"my-project\",\n \"description\": \"Project description\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gcore.com/cloud/v1/projects")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"my-project\",\n \"description\": \"Project description\"\n}"
response = http.request(request)
puts response.read_body{
"client_id": 1,
"created_at": "2019-12-31T23:59:59",
"deleted_at": "2020-12-31T23:59:59",
"description": "Project description",
"id": 1,
"is_default": true,
"name": "default",
"state": "ACTIVE",
"task_id": "7244e161-664c-4afd-a34e-7003eac4d949"
}Create project
Create a new project for a client. Project management must be enabled to perform this operation.
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
project = client.cloud.projects.create(
name="my-project",
)
print(project.id)package main
import (
"context"
"fmt"
"github.com/G-Core/gcore-go"
"github.com/G-Core/gcore-go/cloud"
"github.com/G-Core/gcore-go/option"
)
func main() {
client := gcore.NewClient(
option.WithAPIKey("My API Key"),
)
project, err := client.Cloud.Projects.New(context.TODO(), cloud.ProjectNewParams{
Name: "my-project",
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", project.ID)
}
curl --request POST \
--url https://api.gcore.com/cloud/v1/projects \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "my-project",
"description": "Project description"
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: 'my-project', description: 'Project description'})
};
fetch('https://api.gcore.com/cloud/v1/projects', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.gcore.com/cloud/v1/projects",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'my-project',
'description' => 'Project description'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.post("https://api.gcore.com/cloud/v1/projects")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"my-project\",\n \"description\": \"Project description\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gcore.com/cloud/v1/projects")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"my-project\",\n \"description\": \"Project description\"\n}"
response = http.request(request)
puts response.read_body{
"client_id": 1,
"created_at": "2019-12-31T23:59:59",
"deleted_at": "2020-12-31T23:59:59",
"description": "Project description",
"id": 1,
"is_default": true,
"name": "default",
"state": "ACTIVE",
"task_id": "7244e161-664c-4afd-a34e-7003eac4d949"
}Authorizations
API key for authentication. Make sure to include the word apikey, followed by a single space and then your token.
Example: apikey 1234_abcdef
Body
Response
Created
ID associated with the client.
1
Datetime of creation, which is automatically generated.
"2019-12-31T23:59:59"
Datetime of deletion, which is automatically generated if the project is deleted.
"2020-12-31T23:59:59"
Description of the project.
255"Project description"
Project ID, which is automatically generated upon creation.
1
Indicates if the project is the default one. Each client always has one default project.
true
Unique project name for a client.
"default"
The state of the project.
"ACTIVE"
The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
"7244e161-664c-4afd-a34e-7003eac4d949"
Was this page helpful?