Productsup
CDE APIApi referenceStates

Show a state

A state is only accessible to an admin or the owner of the entity

Sign in to run requests against the CDE API.
GET
/states/{stateId}

Authorization

oAuth2AuthCode
AuthorizationBearer <token>

In: header

Path Parameters

stateId*string
Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://loading/states/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "message": "successful operation",
  "resource": "connector",
  "data": {
    "id": "019e6e76-4a28-7c0a-a7c0-58a940a4974e",
    "status": "pending",
    "name": "sed",
    "owner": "019e6e76-4a22-74b7-9214-db19df4e6865",
    "created": "2026-05-28T14:01:46+02:00",
    "config": {
      "connectorPublicId": "019e6e76-4a24-71ab-aebb-bd0e2c778d4f",
      "versionNumber": 1,
      "vcs": {
        "token": "***"
      }
    },
    "data": {
      "someDataCreated": "some result"
    }
  }
}
{
  "message": "You have to be authorized to access this resource."
}
{
  "message": "Access denied for user."
}
{
  "message": "State not found."
}

How is this guide?