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

Body

id
string
This is the id of the deployment.

Response

id
number
This is the id of the deployment
name
string
This is the name of the deployment
url
string
This is the url of the deployment
status
string
This is the status of the deployment
created_at
string
This is the created_at of the deployment
updated_at
string
This is the updated_at of the deployment
project_id
number
This is the project_id of the deployment
user_id
number
This is the user_id of the deployment
curl --location --request GET 'https://api.stateset.com/v1/deployments' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
    "id": 1
}'