Pricefx REST API Reference
Pricefx REST API
/Pricefx API Reference/- Create an Action Item
Delete an Action Item
List Action Items
Update an Action Item
Execute a Logic
Create an Action Item
The Pricefx Backend API
Download OpenAPI description
Overview
URL
Pricefx
Languages
Servers
Mock server
https://api.pricefx.com/_mock/openapi/reference/pricefx-server_openapi
URL:
https://{baseUrl}/pricefx/{partition}
- Mock serverhttps://api.pricefx.com/_mock/openapi/reference/pricefx-server_openapi/add/AI
- URL:https://companynode.pricefx.com/pricefx/companypartition/add/AI
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://api.pricefx.com/_mock/openapi/reference/pricefx-server_openapi/add/AI \
-H 'Content-Type: application/json' \
-d '{
"data": {
"summary": "Important Action",
"assignedTo": 2147490696,
"dueDate": "2023-06-30T00:00:00",
"description": "This action is really important!",
"actionItemType": "__DEFAULT__",
"parentTypedId": null
}
}'Response
application/json
{ "response": { "node": "string", "data": [ … ], "status": 0 } }
- Mock serverhttps://api.pricefx.com/_mock/openapi/reference/pricefx-server_openapi/delete/AI
- URL:https://companynode.pricefx.com/pricefx/companypartition/delete/AI
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://api.pricefx.com/_mock/openapi/reference/pricefx-server_openapi/delete/AI \
-H 'Content-Type: application/json' \
-d '{
"data": {
"typedId": "42.AI"
}
}'Response
application/json
{ "response": { "node": "pricefx-cluster-app-frontend", "data": [ … ], "status": 0 } }
- Mock serverhttps://api.pricefx.com/_mock/openapi/reference/pricefx-server_openapi/fetch/AI
- URL:https://companynode.pricefx.com/pricefx/companypartition/fetch/AI
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://api.pricefx.com/_mock/openapi/reference/pricefx-server_openapi/fetch/AI \
-H 'Content-Type: application/json' \
-d '{
"endRow": 300,
"oldValues": null,
"operationType": "fetch",
"startRow": 0,
"textMatchStyle": "exact",
"data": {
"_constructor": "AdvancedCriteria",
"operator": "and",
"criteria": [
{
"_constructor": "AdvancedCriteria",
"operator": "and",
"criteria": [
{
"fieldName": "assignedTo",
"operator": "equals",
"value": 2147491061
}
]
},
{
"fieldName": "parentTypedId",
"operator": "equals",
"value": "90.Q",
"_constructor": "AdvancedCriteria"
}
]
}
}'Response
application/json
{ "response": { "status": 0, "startRow": 0, "node": "string", "data": [ … ], "endRow": 0 } }
CommentsCopy for LLM Copy page as Markdown for LLMs View as Markdown Open this page as Markdown Open in ChatGPT Get insights from ChatGPT Open in Claude Get insights from Claude Connect to Cursor Install MCP server on Cursor Connect to VS Code Install MCP server on VS Code