POST
/
v1
/
projects
curl --request POST \
  --url https://api.edgee.app/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "organization_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
  "slug": "my-project",
  "description": "This is my project",
  "external_project_url": "https://my-project.com"
}'
{
  "object": "project",
  "id": "<string>",
  "organization_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
  "slug": "my-project",
  "description": "This is my project",
  "avatar_url": "<string>",
  "created_at": "2022-03-01T00:00:00Z",
  "updated_at": "2022-03-01T00:00:00Z",
  "external_project_url": "https://my-project.com"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token. More info here

Body

application/json

A Project is a unique identifier that you can use to manage and organize your work. Each project belongs to an organization.

organization_id
string
required

Unique identifier for the organization the project belongs to

Example:

"d290f1ee-6c54-4b01-90e6-d701748f0851"

slug
string
required

The Name of the project, URL-friendly string that identifies the project

Example:

"my-project"

description
string

Description of the project

Example:

"This is my project"

external_project_url
string

External link to a platform provider for the project

Example:

"https://my-project.com"

Response

200
application/json
The created Project

A Project is a unique identifier that you can use to manage and organize your work. Each project belongs to an organization.

object
string

String representing the object's type. Objects of the same type share the same value

Example:

"project"

id
string

Unique identifier for the project

organization_id
string

Unique identifier for the organization the project belongs to

Example:

"d290f1ee-6c54-4b01-90e6-d701748f0851"

slug
string

The Name of the project, URL-friendly string that identifies the project

Example:

"my-project"

description
string

Description of the project

Example:

"This is my project"

avatar_url
string

Avatar URL of the project

created_at
string

Time at which the project was created

Example:

"2022-03-01T00:00:00Z"

updated_at
string

Time at which the project was last updated

Example:

"2022-03-01T00:00:00Z"

external_project_url
string

External link to a platform provider for the project

Example:

"https://my-project.com"