GET
/prime/webui/configuration
prime webui configuration
Calls GET /prime/webui/configuration. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/configuration' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"get": {
"tags": [
"Config"
],
"responses": {
"200": {
"description": "Success"
}
}
},
GET
/prime/webui/configuration/GetConfigurationKey
prime webui configuration GetConfigurationKey
Calls GET /prime/webui/configuration/GetConfigurationKey. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/configuration/GetConfigurationKey' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"get": {
"tags": [
"Config"
],
"parameters": [
{
"name": "key",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Success"
51
}
}
}
GET
/prime/webui/configuration/GetFieldMapping
prime webui configuration GetFieldMapping
Calls GET /prime/webui/configuration/GetFieldMapping. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/configuration/GetFieldMapping' \
-H 'Authorization: Bearer <token>'
OpenAPI spec
"get": {
"tags": [
"Config"
],
"responses": {
"200": {
"description": "Success"
}
}
}
POST
/prime/webui/configuration
prime webui configuration
Calls POST /prime/webui/configuration. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/configuration' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{"$ref":"#/components/schemas/ConfigEntryView"}'
OpenAPI spec
"post": {
"tags": [
"Config"
],
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"$ref": "#/components/schemas/ConfigEntryView"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConfigEntryView"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/ConfigEntryView"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/ConfigEntryView"
}
}
}
},
"responses": {
52
"200": {
"description": "Success"
}
}
}
POST
/prime/webui/configuration/GetConfigurationByKeys
prime webui configuration GetConfigurationByKeys
Calls POST /prime/webui/configuration/GetConfigurationByKeys. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/configuration/GetConfigurationByKeys' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{}'
OpenAPI spec
"post": {
"tags": [
"Config"
],
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"type": "array",
"items": {
"type": "string"
},
"nullable": true
}
},
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "string"
},
"nullable": true
}
},
"text/json": {
"schema": {
"type": "array",
"items": {
"type": "string"
},
"nullable": true
}
},
"application/*+json": {
"schema": {
"type": "array",
"items": {
"type": "string"
},
"nullable": true
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
53
}
}