Skip to main content
GET
https://api.stateset.com
/
v1
/
projects
curl --location --request GET 'https://api.stateset.com/v1/projects' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
    "id": 1
}'
{
  "id": 123,
  "name": "<string>",
  "description": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "created_by": "<string>"
}

Body

id
string
This is the id of the project.

Response

id
number
This is the id of the project.
name
string
This is the name of the project.
description
string
This is the description of the project.
created_at
string
This is the date the project was created.
updated_at
string
This is the date the project was last updated.
created_by
string
This is the id of the user that created the project.
curl --location --request GET 'https://api.stateset.com/v1/projects' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
    "id": 1
}'