Skip to Main Content
Spotfire Ideas Portal
Status To be Reviewed
Categories development
Created by Guest
Created on Jun 19, 2023

TDV Web Services Publish RestAPI format to simplify

When publish restapi with json format and just want to simpliy to show data

for example:

I'm trying to make a JSON data for my API request, see example below:

Default:

"m02spResponse": {

"m02spResult": {

"row": [

{

"column1": "aaaaa",

"column2": null,

"column3": null,

"column4": null,

"column5": null,

"column6": 6789,

"column7": null,

"column8": null

},

{

"column1": "hanklin",

"column2": null,

"column3": null,

"column4": null,

"column5": null,

"column6": null,

"column7": null,

"column8": 57575

},

……….

……….

]

}

and I expect example :

{

[

{

"column1": "aaaaa",

"column2": null,

"column3": null,

"column4": null,

"column5": null,

"column6": 6789,

"column7": null,

"column8": null

},

{

"column1": "hanklin",

"column2": null,

"column3": null,

"column4": null,

"column5": null,

"column6": null,

"column7": null,

"column8": 57575

},

……….

……….

]

}

I wan't show the " m02spResponse","m02spResult","row"



  • Attach files