Delete Import Changes

post/importmanager.deletechanges

Reverts all changes specified in the request body.

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
object
typedIds
Array of strings

Array of typedIds of import changes you want to delete.

Responses
200

A general response that contains data property with a content depending on returned objects (e.g., Product master table fields when calling the /fetch/P endpoint). Can be null.

Response Schema: application/json
object
node
string
data
object or null
status
integer
startRow
integer
endRow
integer
Request samples
application/json
{
  • "data": {
    • "typedIds": [
      • "string"
      ]
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "data": null,
    • "status": 0,
    • "startRow": 0,
    • "endRow": 0
    }
}