DELETE
/prime/webui/UserAttributes/DeleteUserAttribute
prime webui UserAttributes DeleteUserAttribute
Calls DELETE /prime/webui/UserAttributes/DeleteUserAttribute. Use this to delete data.
curl example
curl -X DELETE 'https://<host>/prime/webui/UserAttributes/DeleteUserAttribute' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"delete": {
"tags": [
"UserAttributes"
],
"parameters": [
{
"name": "id",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Success"
}
}
}
GET
/prime/webui/UserAttributes
prime webui UserAttributes
Calls GET /prime/webui/UserAttributes. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/UserAttributes' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"get": {
"tags": [
"UserAttributes"
],
"parameters": [
{
"name": "pageSize",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "pageNumber",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
254
},
{
"name": "globalSearch",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Success"
}
}
}
POST
/prime/webui/UserAttributes/AddOrUpdateUserAttributesToAssets
prime webui UserAttributes AddOrUpdateUserAttributesToAssets
Calls POST /prime/webui/UserAttributes/AddOrUpdateUserAttributesToAssets. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/UserAttributes/AddOrUpdateUserAttributesToAssets' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{"$ref":"#/components/schemas/InputUserAttributeAssetsUI"}'
OpenAPI spec
"post": {
"tags": [
"UserAttributes"
],
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeAssetsUI"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeAssetsUI"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeAssetsUI"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeAssetsUI"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
POST
/prime/webui/UserAttributes/AddUserAttribute
prime webui UserAttributes AddUserAttribute
Calls POST /prime/webui/UserAttributes/AddUserAttribute. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/UserAttributes/AddUserAttribute' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{"$ref":"#/components/schemas/InputUserAttributeFromUI"}'
OpenAPI spec
"post": {
"tags": [
"UserAttributes"
],
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeFromUI"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeFromUI"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeFromUI"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeFromUI"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
POST
/prime/webui/UserAttributes/UpdateUserAttribute
prime webui UserAttributes UpdateUserAttribute
Calls POST /prime/webui/UserAttributes/UpdateUserAttribute. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/UserAttributes/UpdateUserAttribute' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{"$ref":"#/components/schemas/InputUserAttributeFromUI"}'
OpenAPI spec
"post": {
"tags": [
"UserAttributes"
],
"parameters": [
{
"name": "id",
"in": "query",
256
"schema": {
"type": "string",
"nullable": true
}
}
],
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeFromUI"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeFromUI"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeFromUI"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/InputUserAttributeFromUI"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}