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

Body

id
string
This is the id of the secret

Response

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