POST
/prime/webui/elements/exportelementscsv
Export all elements CSV
Export all elements CSV. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/elements/exportelementscsv' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{}'OpenAPI spec
"post": {
"tags": [
"Elements"
],
"summary": "Export all elements CSV",
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"type": "object",
"nullable": true
}
},
"application/json": {
"schema": {
"type": "object",
"nullable": true
}
},
"text/json": {
"schema": {
"type": "object",
"nullable": true
}
},
55
"application/*+json": {
"schema": {
"type": "object",
"nullable": true
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}