Skip to main content
GET
/
procedures
List Procedures
curl --request GET \
  --url https://cloud.cdata.com/api/procedures \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "affectedRows": 123,
      "schema": [
        {
          "catalogName": "<string>",
          "columnLabel": "<string>",
          "columnName": "<string>",
          "dataType": 1,
          "dataTypeName": "<string>",
          "length": 123,
          "nullable": true,
          "ordinal": 123,
          "precision": 123,
          "scale": 123,
          "schemaName": "<string>",
          "tableName": "<string>"
        }
      ],
      "rows": [
        [
          "<unknown>"
        ]
      ]
    }
  ],
  "error": {
    "code": 0,
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
required

JWT token authentication. Include the token in the Authorization header as 'Bearer '.

Query Parameters

catalogName
string

Restricts results to the specified catalog.

schemaName
string

Restricts results to the specified schema.

procedureName
string

Restricts results to the specified procedure.

Response

200 - application/json

OK

results
object[] | null
error
object