GET
/prime/webui/tableConfig
Get All User Table Config
Get All User Table Config. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/tableConfig' \
-H 'Authorization: Bearer <token>'OpenAPI spec
"get": {
"tags": [
"UserConfigTable"
],
"summary": "Get All User Table Config",
"responses": {
"200": {
"description": "Success",
"content": {
"text/plain": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/UserConfigTable"
}
257
}
},
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/UserConfigTable"
}
}
},
"text/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/UserConfigTable"
}
}
}
}
}
}
},