Body
This is the ID of the logs to be get
Response
This is the ID of the logs
This is the description of the logs
This is the timestamp of the logs
This is the type of the logs
curl --request GET \
--url https://api.stateset.com/v1/logs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>"
}'
{
"id": "<string>",
"description": "<string>",
"timestamp": "<string>",
"type": "<string>"
}
This endpoint gets new logs
curl --request GET \
--url https://api.stateset.com/v1/logs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>"
}'
{
"id": "<string>",
"description": "<string>",
"timestamp": "<string>",
"type": "<string>"
}