Share

Grid Endpoint


GET /v3/workspaces/{workspaceId}/items/{itemId}/views/13/rows

This endpoint now supports the following query parameters:

Return “plain” values (unformatted) for paragraph fields

This functionality allows adding a query parameter to the Item Details GET call to fetch plain text values in the payload, originally entered in Paragraph fields, without formatting HTML tags, and decoded URL-encoded characters. The query parameter is ?paragraph-content=text/plain

Examples:

GET https://tenant_name.autodeskplm360.net/api/v3/workspaces/1/items/1001/views/13/rows
Returns:
{
    "rows": [
        {
            "rowData": [
                {
                    "__self__": "/api/v3/workspaces/169/items/7971/views/13/rows/5",
                    "urn": "urn:adsk.plm:tenant.workspace.item.view.row:TENANT_NAME.1.1001.13.5",
                    "title": "Row Id",
                    "type": {
                        "link": "/api/v3/field-types/1",
                        "urn": "urn:adsk.plm:tenant.field-type:TENANT_NAME.1",
                        "deleted": false
                    },
                    "value": 1
                },
                {
                    "__self__": "/api/v3/workspaces/169/items/7971/views/13/fields/EDITABLE_P",
                    "urn": "urn:adsk.plm:tenant.workspace.item.view.field: TENANT_NAME.1.1001.13.EDITABLE_P",
                    "title": "Editable P",
                    "type": {
                        "link": "/api/v3/field-types/8",
                        "urn": "urn:adsk.plm:tenant.field-type: TENANT_NAME.8",
                        "title": "Paragraph",
                        "deleted": false
                    },
                    "value": "<p><b>testing 1&#43;</b></p>"
                }
            ],
            "rowID": "0",
            "metaFieldTableBean": {
                "dataMap": {}
            }
        }
    ],
    "aggregations": []
}

GET https://tenant_name.autodeskplm360.net/api/v3/workspaces/1/items/1001/views/13/rows?paragraph-content=text/plain
Returns:
{
    "rows": [
        {
            "rowData": [
                {
                    "__self__": "/api/v3/workspaces/169/items/7971/views/13/rows/5",
                    "urn": "urn:adsk.plm:tenant.workspace.item.view.row:TENANT_NAME.1.1001.13.5",
                    "title": "Row Id",
                    "type": {
                        "link": "/api/v3/field-types/1",
                        "urn": "urn:adsk.plm:tenant.field-type:TENANT_NAME.1",
                        "deleted": false
                    },
                    "value": 1
                },
                {
                    "__self__": "/api/v3/workspaces/169/items/7971/views/13/fields/EDITABLE_P",
                    "urn": "urn:adsk.plm:tenant.workspace.item.view.field: TENANT_NAME.1.1001.13.EDITABLE_P",
                    "title": "Editable P",
                    "type": {
                        "link": "/api/v3/field-types/8",
                        "urn": "urn:adsk.plm:tenant.field-type: TENANT_NAME.8",
                        "title": "Paragraph",
                        "deleted": false
                    },
                    "value": testing 1+"
                }
            ],
            "rowID": "0",
            "metaFieldTableBean": {
                "dataMap": {}
            }
        }
    ],
    "aggregations": []
}

Back to top

Was this information helpful?